From e09d57ca8b7b834cabd06f71af9c829244526472 Mon Sep 17 00:00:00 2001 From: Fabien Potencier Date: Wed, 19 May 2010 09:45:49 +0200 Subject: [PATCH] moved Doctrine migration commands to another bundle as migrations are not part of Doctrine core --- .../DoctrineMigrationsBundle/Bundle.php | 26 +++++++++++++++++++ .../Command/MigrationsDiffDoctrineCommand.php | 0 .../MigrationsExecuteDoctrineCommand.php | 0 .../MigrationsGenerateDoctrineCommand.php | 0 .../MigrationsMigrateDoctrineCommand.php | 0 .../MigrationsStatusDoctrineCommand.php | 0 .../MigrationsVersionDoctrineCommand.php | 0 7 files changed, 26 insertions(+) create mode 100644 src/Symfony/Framework/DoctrineMigrationsBundle/Bundle.php rename src/Symfony/Framework/{DoctrineBundle => DoctrineMigrationsBundle}/Command/MigrationsDiffDoctrineCommand.php (100%) rename src/Symfony/Framework/{DoctrineBundle => DoctrineMigrationsBundle}/Command/MigrationsExecuteDoctrineCommand.php (100%) rename src/Symfony/Framework/{DoctrineBundle => DoctrineMigrationsBundle}/Command/MigrationsGenerateDoctrineCommand.php (100%) rename src/Symfony/Framework/{DoctrineBundle => DoctrineMigrationsBundle}/Command/MigrationsMigrateDoctrineCommand.php (100%) rename src/Symfony/Framework/{DoctrineBundle => DoctrineMigrationsBundle}/Command/MigrationsStatusDoctrineCommand.php (100%) rename src/Symfony/Framework/{DoctrineBundle => DoctrineMigrationsBundle}/Command/MigrationsVersionDoctrineCommand.php (100%) diff --git a/src/Symfony/Framework/DoctrineMigrationsBundle/Bundle.php b/src/Symfony/Framework/DoctrineMigrationsBundle/Bundle.php new file mode 100644 index 0000000000..bb26add701 --- /dev/null +++ b/src/Symfony/Framework/DoctrineMigrationsBundle/Bundle.php @@ -0,0 +1,26 @@ + + * + * This source file is subject to the MIT license that is bundled + * with this source code in the file LICENSE. + */ + +/** + * Bundle. + * + * @package Symfony + * @subpackage Framework_DoctrineBundle + * @author Fabien Potencier + * @author Jonathan H. Wage + */ +class Bundle extends BaseBundle +{ +} diff --git a/src/Symfony/Framework/DoctrineBundle/Command/MigrationsDiffDoctrineCommand.php b/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsDiffDoctrineCommand.php similarity index 100% rename from src/Symfony/Framework/DoctrineBundle/Command/MigrationsDiffDoctrineCommand.php rename to src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsDiffDoctrineCommand.php diff --git a/src/Symfony/Framework/DoctrineBundle/Command/MigrationsExecuteDoctrineCommand.php b/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsExecuteDoctrineCommand.php similarity index 100% rename from src/Symfony/Framework/DoctrineBundle/Command/MigrationsExecuteDoctrineCommand.php rename to src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsExecuteDoctrineCommand.php diff --git a/src/Symfony/Framework/DoctrineBundle/Command/MigrationsGenerateDoctrineCommand.php b/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsGenerateDoctrineCommand.php similarity index 100% rename from src/Symfony/Framework/DoctrineBundle/Command/MigrationsGenerateDoctrineCommand.php rename to src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsGenerateDoctrineCommand.php diff --git a/src/Symfony/Framework/DoctrineBundle/Command/MigrationsMigrateDoctrineCommand.php b/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsMigrateDoctrineCommand.php similarity index 100% rename from src/Symfony/Framework/DoctrineBundle/Command/MigrationsMigrateDoctrineCommand.php rename to src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsMigrateDoctrineCommand.php diff --git a/src/Symfony/Framework/DoctrineBundle/Command/MigrationsStatusDoctrineCommand.php b/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsStatusDoctrineCommand.php similarity index 100% rename from src/Symfony/Framework/DoctrineBundle/Command/MigrationsStatusDoctrineCommand.php rename to src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsStatusDoctrineCommand.php diff --git a/src/Symfony/Framework/DoctrineBundle/Command/MigrationsVersionDoctrineCommand.php b/src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsVersionDoctrineCommand.php similarity index 100% rename from src/Symfony/Framework/DoctrineBundle/Command/MigrationsVersionDoctrineCommand.php rename to src/Symfony/Framework/DoctrineMigrationsBundle/Command/MigrationsVersionDoctrineCommand.php