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