From 4d6b6bd6b99f0a735d957d3714e52c93a9bef829 Mon Sep 17 00:00:00 2001 From: Alexander Smirnov Date: Fri, 9 Aug 2024 15:12:51 +0300 Subject: [PATCH] =?utf8?q?[ERP-137]=20=D0=92=D1=80=D0=B5=D0=BC=D0=B5=D0=BD?= =?utf8?q?=D0=BD=D0=B0=D1=8F=20=D0=B7=D0=B0=D0=B3=D0=BB=D1=83=D1=88=D0=BA?= =?utf8?q?=D0=B0=20=D0=B4=D0=BB=D1=8F=20=D0=BC=D0=B8=D0=B3=D1=80=D0=B0?= =?utf8?q?=D1=86=D0=B8=D0=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- erp24/migrations/m240719_063451_create_table_motivation.php | 1 + .../m240722_054604_create_motivation_costs_items_table.php | 1 + erp24/migrations/m240729_081512_create_table_incoming_item.php | 1 + 3 files changed, 3 insertions(+) diff --git a/erp24/migrations/m240719_063451_create_table_motivation.php b/erp24/migrations/m240719_063451_create_table_motivation.php index 67e23283..fd819536 100755 --- a/erp24/migrations/m240719_063451_create_table_motivation.php +++ b/erp24/migrations/m240719_063451_create_table_motivation.php @@ -16,6 +16,7 @@ class m240719_063451_create_table_motivation extends Migration */ public function safeUp() { + return true; // TODO:: remove it $this->createTable(self::TABLE_NAME, [ 'id' => $this->primaryKey(), 'store_id' => $this->integer()->notNull()->comment('ID магазина'), diff --git a/erp24/migrations/m240722_054604_create_motivation_costs_items_table.php b/erp24/migrations/m240722_054604_create_motivation_costs_items_table.php index 9b1244bd..88edff68 100644 --- a/erp24/migrations/m240722_054604_create_motivation_costs_items_table.php +++ b/erp24/migrations/m240722_054604_create_motivation_costs_items_table.php @@ -12,6 +12,7 @@ class m240722_054604_create_motivation_costs_items_table extends Migration */ public function safeUp() { + return true; // TODO:: remove it $this->execute('SET search_path TO erp24'); // Создаем тип ENUM diff --git a/erp24/migrations/m240729_081512_create_table_incoming_item.php b/erp24/migrations/m240729_081512_create_table_incoming_item.php index 8f18ace4..6286eaac 100755 --- a/erp24/migrations/m240729_081512_create_table_incoming_item.php +++ b/erp24/migrations/m240729_081512_create_table_incoming_item.php @@ -14,6 +14,7 @@ class m240729_081512_create_table_incoming_item extends Migration */ public function safeUp() { + return true; // TODO:: remove it $this->createTable(self::TABLE_NAME, [ 'id' => $this->primaryKey(), 'incoming_id' => $this->string(36)->notNull()->comment('ID из таблицы incoming'), -- 2.39.5