Amranidev\ScaffoldInterface\Generators\Generator::migration PHP Method

migration() public method

Generate Migration.
public migration ( ) : void
return void
    public function migration()
    {
        $this->make($this->paths->migrationPath, $this->migration->generate());
    }

Usage Example

Exemplo n.º 1
0
 /**
  * Scaffold Migration.
  *
  * @return \Amranidev\ScaffoldInterface\Scaffold
  */
 public function migration()
 {
     $this->generator->migration();
     return $this;
 }