hasTable('sms'); if (!$exists) { $table = $this->table('sms'); $table->addColumn('slug','string',["limit" => 50]) ->addColumn('tag','text') ->addColumn('content','text') ->addColumn('created_at','date') ->addColumn('updated_at','datetime') ->addIndex(["slug"], ['unique' => true]) ->create(); } } public function down() { $this->table('sms')->drop()->save(); } }