--- /dev/null
+<?php
+
+use yii\db\Migration;
+
+/**
+ * Class m240508_113706_alter_table_kik_feedback_request_add_order_id
+ */
+class m240508_113706_alter_table_kik_feedback_request_add_order_id extends Migration
+{
+ const TABLE_NAME = "kik_feedback_request";
+ /**
+ * {@inheritdoc}
+ */
+ public function safeUp()
+ {
+ $this->addColumn(self::TABLE_NAME, 'order_id', $this->string(40)->null()->after('check_id')->comment('номер заказа в amocrm'));
+ }
+
+ /**
+ * {@inheritdoc}
+ */
+ public function safeDown()
+ {
+ $this->dropColumn(self::TABLE_NAME, 'order_id');
+ }
+}