Viewing file: MigrateRefreshCommand.php (1.92 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Akaunting\Module\Commands;
use Illuminate\Console\Command; use Akaunting\Module\Traits\ModuleCommandTrait; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputOption;
class MigrateRefreshCommand extends Command { use ModuleCommandTrait;
/** * The console command name. * * @var string */ protected $name = 'module:migrate-refresh';
/** * The console command description. * * @var string */ protected $description = 'Rollback & re-migrate the modules migrations.';
/** * Execute the console command. */ public function handle() { $this->call('module:migrate-reset', [ 'alias' => $this->getModuleAlias(), '--database' => $this->option('database'), '--force' => $this->option('force'), ]);
$this->call('module:migrate', [ 'alias' => $this->getModuleAlias(), '--database' => $this->option('database'), '--force' => $this->option('force'), ]);
if ($this->option('seed')) { $this->call('module:seed', [ 'alias' => $this->getModuleAlias(), ]); } }
/** * Get the console command arguments. * * @return array */ protected function getArguments() { return [ ['alias', InputArgument::OPTIONAL, 'The alias of module will be used.'], ]; }
/** * Get the console command options. * * @return array */ protected function getOptions() { return [ ['database', null, InputOption::VALUE_OPTIONAL, 'The database connection to use.'], ['force', null, InputOption::VALUE_NONE, 'Force the operation to run when in production.'], ['seed', null, InputOption::VALUE_NONE, 'Indicates if the seed task should be re-run.'], ]; } }
|