hasTable('order_notes'); if (!$exists) { $table = $this->table('order_notes'); $table->addColumn('order_id','integer') ->addColumn('description','text') ->addColumn('created_at','date') ->addColumn('updated_at','datetime') ->create(); } } public function down() { $this->table('order_notes')->drop()->save(); } }