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