コード例 #1
0
ファイル: Add.php プロジェクト: halfer/Meshing
 /**
  * Modify the schema 
  */
 protected function doFixups($schemaFileIn, $schemaFileOut, $schemaName)
 {
     $fixup = new Meshing_Schema_Fixup($schemaFileIn, $schemaFileOut);
     // Get the table names before we do the fixup (which adds more tables)
     $tableNames = $fixup->getTableNames();
     $fixup->fixup($schemaName);
     return $tableNames;
 }