hasTable('notification'); if (!$exists) { $table = $this->table('notification'); $table->addColumn('user_id','integer') ->addColumn('message','text') ->addColumn('url','text') ->addColumn('read_status','integer') ->addColumn('created_at','date') ->addColumn('updated_at','datetime') ->create(); } } public function down() { $this->table('notification')->drop()->save(); } }