--- /dev/null
+<?php
+
+use yii\db\Migration;
+
+/**
+ * Class m241018_065706_alter_table_city_store_drop_column_cluster_id
+ */
+class m241018_065706_alter_table_city_store_drop_column_cluster_id extends Migration
+{
+ /**
+ * {@inheritdoc}
+ */
+ const TABLE_NAME = "city_store";
+
+ /**
+ * {@inheritdoc}
+ */
+ public function safeUp()
+ {
+ $this->dropColumn(self::TABLE_NAME, 'cluster_id');
+ }
+
+ /**
+ * {@inheritdoc}
+ */
+ public function safeDown()
+ {
+
+ $this->addColumn(self::TABLE_NAME, 'cluster_id', $this->integer()->notNull()->after('administrator_id'));
+ }
+
+ /*
+ // Use up()/down() to run migration code without a transaction.
+ public function up()
+ {
+
+ }
+
+ public function down()
+ {
+ echo "m241018_065706_alter_table_city_store_drop_column_cluster_id cannot be reverted.\n";
+
+ return false;
+ }
+ */
+}