Example #1
0
 /**
  * Builds the DDL SQL to add the indices of a table.
  *
  * @param      Table $table
  * @return     string
  */
 public function getAddIndicesDDL(Table $table)
 {
     $ret = '';
     foreach ($table->getIndices() as $fk) {
         $ret .= $this->getAddIndexDDL($fk);
     }
     return $ret;
 }