--- /dev/null
+<?php
+
+use yii\db\Migration;
+
+/**
+ * Class m250127_103546_drop_column_in_city_store_params
+ */
+class m250127_103546_drop_column_in_city_store_params extends Migration
+{
+ /**
+ * {@inheritdoc}
+ */
+ public function safeUp()
+ {
+ $this->dropColumn('city_store_params', 'bush_id');
+ }
+
+ /**
+ * {@inheritdoc}
+ */
+ public function safeDown()
+ {
+ $this->addColumn('city_store_params', 'bush_id', $this->integer()->comment('ID куста'));
+ }
+
+ /*
+ // Use up()/down() to run migration code without a transaction.
+ public function up()
+ {
+
+ }
+
+ public function down()
+ {
+ echo "m250127_103546_drop_column_in_city_store_params cannot be reverted.\n";
+
+ return false;
+ }
+ */
+}