diff options
Diffstat (limited to 'main/app/system/Bakery/Command/Migrate.php')
-rwxr-xr-x | main/app/system/Bakery/Command/Migrate.php | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/main/app/system/Bakery/Command/Migrate.php b/main/app/system/Bakery/Command/Migrate.php new file mode 100755 index 0000000..c0a5b4f --- /dev/null +++ b/main/app/system/Bakery/Command/Migrate.php @@ -0,0 +1,48 @@ +<?php +/** + * UserFrosting (http://www.userfrosting.com) + * + * @link https://github.com/userfrosting/UserFrosting + * @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License) + */ +namespace UserFrosting\System\Bakery\Command; + +use Symfony\Component\Console\Input\InputInterface; +use Symfony\Component\Console\Output\OutputInterface; +use Symfony\Component\Console\Input\InputArgument; +use Symfony\Component\Console\Input\InputOption; +use UserFrosting\System\Bakery\BaseCommand; +use UserFrosting\System\Bakery\Migrator; + +/** + * Migrate CLI Tools. + * Perform database migrations commands + * + * @author Alex Weissman (https://alexanderweissman.com) + */ +class Migrate extends BaseCommand +{ + /** + * {@inheritDoc} + */ + protected function configure() + { + $this->setName("migrate") + ->setDescription("Perform database migration") + ->setHelp("This command runs all the pending database migrations.") + ->addOption('pretend', 'p', InputOption::VALUE_NONE, 'Run migrations in "dry run" mode'); + } + + /** + * {@inheritDoc} + */ + protected function execute(InputInterface $input, OutputInterface $output) + { + $this->io->title("UserFrosting's Migrator"); + + $pretend = $input->getOption('pretend'); + + $migrator = new Migrator($this->io, $this->ci); + $migrator->runUp($pretend); + } +}
\ No newline at end of file |