createTable('{{%cities}}', [ 'id' => $this->primaryKey(), 'name' => $this->string(255), 'is_active' => $this->smallInteger(), 'parent' => $this->integer() ], $tableOptions); } public function down() { $this->dropTable('{{%cities}}'); } }