hasTable('school'); if (!$exists) { $table = $this->table('school'); $table->addColumn('name','string',["limit" => 255]) ->addColumn('status','integer') ->addColumn('created_at','date') ->addColumn('updated_at','datetime') ->create(); } } public function down() { $this->table('school')->drop()->save(); } }