createTable('seo_category', [ 'seo_category_id' => $this->primaryKey(), 'name' => $this->string(), 'controller' => $this->string(100), 'status' => $this->smallInteger(1), ]); } /** * @inheritdoc */ public function down() { $this->dropTable('seo_category'); } }