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