Example #1
0
 public function create($table, \Closure $callback)
 {
     $tb = new Table($this->builder, $table);
     $tb->create();
     $tb->engine = 'InnoDB';
     $callback($tb);
     $tb->build($this->con, $this->grammar);
 }