コード例 #1
0
ファイル: MigrateCommand.php プロジェクト: czogori/dami
 protected function configure()
 {
     parent::configure();
     $this->setDescription('Migrate database.')->addArgument('to-version', InputArgument::OPTIONAL, 'Migrate to specific version of migrations');
 }
コード例 #2
0
ファイル: StatusCommand.php プロジェクト: czogori/dami
 protected function configure()
 {
     parent::configure();
     $this->setDescription('Migrations status.');
 }
コード例 #3
0
ファイル: CreateCommand.php プロジェクト: czogori/dami
 protected function configure()
 {
     parent::configure();
     $this->setDescription('Create a new migration.')->addArgument('migration_name', InputArgument::REQUIRED, 'Migration name');
 }