createTable('city', [ 'id' => $this->primaryKey(), 'sort' => $this->integer(), 'status' => $this->boolean() ->defaultValue(true), ]); } /** * @inheritdoc */ public function down() { $this->dropTable('city'); } }