LazyRecord\Migration\Migration::createTable PHP Method

createTable() public method

$this->createTable(function($s) { $s->column('title')->varchar(120); });.
public createTable ( $cb )
    public function createTable($cb)
    {
        $ds = new DynamicSchemaDeclare();
        call_user_func($cb, $ds);
        $ds->build();
        $sqls = $this->builder->build($ds);
        $this->query($sqls);
    }