From bf8372b608d51c8aaf993657260226d07b8f7dd5 Mon Sep 17 00:00:00 2001 From: fomichev Date: Tue, 8 Apr 2025 18:04:26 +0300 Subject: [PATCH] =?utf8?q?=D0=92=D0=B5=D1=80=D0=BD=D1=83=D0=BB=20=D1=81?= =?utf8?q?=D1=82=D0=B0=D1=82=D1=83=D1=81=20=D0=B2=20=D0=BC=D0=B8=D0=B3?= =?utf8?q?=D1=80=D0=B0=D1=86=D0=B8=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- .../m250219_062708_create_marketplace_orders_table.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erp24/migrations/m250219_062708_create_marketplace_orders_table.php b/erp24/migrations/m250219_062708_create_marketplace_orders_table.php index 37c61857..5ffdb108 100644 --- a/erp24/migrations/m250219_062708_create_marketplace_orders_table.php +++ b/erp24/migrations/m250219_062708_create_marketplace_orders_table.php @@ -38,7 +38,7 @@ class m250219_062708_create_marketplace_orders_table extends Migration 'cancel_requested' => $this->tinyInteger()->notNull()->defaultValue(0)->comment('Флаг запроса отмены'), 'raw_data' => $this->text()->comment('Полный сырой ответ API'), 'guid' => $this->string(36)->null()->comment('GUID заказа в 1С'), - 'status_1c' => $this->integer()->null()->comment('Статус заказа в 1С'), + 'status_1c' => $this->integer()->defaultValue(1)->comment('Статус заказа в 1С'), ]); } } -- 2.39.5