/**
  * Execute the command
  */
 public function exec()
 {
     $bundle = $this->argument("bundle");
     $process = Migrations::rollback($bundle);
     //
     $this->show($process);
 }
Exemplo n.º 2
0
 /**
  * Execute the command
  */
 public function exec()
 {
     $bundle = $this->argument("bundle");
     $name = $this->argument("name");
     //
     $process = Migrations::add($name, $bundle);
     //
     $this->show($process);
 }
 /**
  * Execute the command
  */
 public function exec()
 {
     $schema = true;
     //
     $bundle = $this->argument("bundle");
     $data = $this->splite(Migrations::ListAll($bundle));
     //
     $this->show($data);
 }