protected function configure()
 {
     $this->setName('up')->setDescription('Apply your migration - execute the `up` method of your migration.')->addOption('force', 'f', InputOption::VALUE_OPTIONAL, 'Force going up, even if the migration has already been applied.', false);
     parent::configure();
 }
 protected function configure()
 {
     $this->setName('down')->setDescription('Revert your migration - execute the `down` method of your migration.')->addOption('force', 'f', InputOption::VALUE_OPTIONAL, 'Force going down, even if the migration has not been applied yet.', false);
     parent::configure();
 }
 protected function configure()
 {
     $this->setName('toggle')->setDescription('Toggle a migration up or down. Useful when writing your migration.');
     parent::configure();
 }