Exemplo n.º 1
0
 /**
  * Generate a set of migration classes from an existing database
  *
  * @param string $migrationsPath
  * @return void
  * @throws new Doctrine_Migration_Exception
  */
 public static function generateMigrationsFromDb($migrationsPath)
 {
     $builder = new Doctrine_Migration_Builder($migrationsPath);
     return $builder->generateMigrationsFromDb();
 }