diff --git a/Command/MigrationGenerateDiffCommand.php b/Command/MigrationGenerateDiffCommand.php index 11ca3c6..8bbc9e6 100644 --- a/Command/MigrationGenerateDiffCommand.php +++ b/Command/MigrationGenerateDiffCommand.php @@ -6,19 +6,10 @@ use Propel\PropelBundle\Command\PhingCommand; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; -/* - * This file is part of the Symfony framework. - * - * (c) Fabien Potencier - * - * This source file is subject to the MIT license that is bundled - * with this source code in the file LICENSE. - */ - /** * MigrationGenerateDiffCommand. * - * @author William DURAND + * @author William DURAND */ class MigrationGenerateDiffCommand extends PhingCommand { diff --git a/Command/MigrationMigrateCommand.php b/Command/MigrationMigrateCommand.php index e1b0e4f..0678b06 100644 --- a/Command/MigrationMigrateCommand.php +++ b/Command/MigrationMigrateCommand.php @@ -8,19 +8,10 @@ use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Output\Output; -/* - * This file is part of the Symfony framework. - * - * (c) Fabien Potencier - * - * This source file is subject to the MIT license that is bundled - * with this source code in the file LICENSE. - */ - /** * MigrationMigrateCommand. * - * @author William DURAND + * @author William DURAND */ class MigrationMigrateCommand extends PhingCommand { @@ -42,11 +33,9 @@ The propel:migration:migrate command checks the version of the data php app/console propel:migration:migrate : is the default command, it executes all migrations files. - php app/console propel:migration:migrate --up : checks the version of the database structure, looks for migrations files not yet executed - (i.e. with a greater version timestamp), and executes the first one of them. + php app/console propel:migration:migrate --up : checks the version of the database structure, looks for migrations files not yet executed (i.e. with a greater version timestamp), and executes the first one of them. - php app/console propel:migration:migrate --down : checks the version of the database structure, and looks for migration files already executed - (i.e. with a lower version timestamp). The last executed migration found is reversed. + php app/console propel:migration:migrate --down : checks the version of the database structure, and looks for migration files already executed (i.e. with a lower version timestamp). The last executed migration found is reversed. EOT ) ->setName('propel:migration:migrate')