]> gitweb.erp-flowers.ru Git - erp24_rep/yii-erp24/.git/commitdiff
ERP-85 Реализовать обмен данных с 1С Бухгалтерия
authormarina <m.zozirova@gmail.com>
Tue, 6 Aug 2024 09:28:55 +0000 (12:28 +0300)
committermarina <m.zozirova@gmail.com>
Tue, 6 Aug 2024 09:28:55 +0000 (12:28 +0300)
erp24/migrations/m240719_063451_create_table_motivation.php
erp24/migrations/m240722_054604_create_motivation_costs_items_table.php
erp24/migrations/m240729_081512_create_table_incoming_item.php

index 67e23283a861ad2be772a31cc56fa5c47e041608..c515b7a57ff277881bb540638f41347222ff0cae 100755 (executable)
@@ -16,6 +16,7 @@ class m240719_063451_create_table_motivation extends Migration
      */
     public function safeUp()
     {
+        return true;
         $this->createTable(self::TABLE_NAME, [
             'id' => $this->primaryKey(),
             'store_id' => $this->integer()->notNull()->comment('ID магазина'),
index 9b1244bd24fd8fd282007f120ce92ef6a45e30ae..29449aa88c371d749d4ecda3d4749eac540f9e72 100644 (file)
@@ -12,6 +12,7 @@ class m240722_054604_create_motivation_costs_items_table extends Migration
      */
     public function safeUp()
     {
+        return true;
         $this->execute('SET search_path TO erp24');
         
         // Создаем тип ENUM
index 8f18ace4836fd3ef782448d47c69e009296e7a2e..182bca771a80eb566ca1e18892410eb3f8f3d395 100755 (executable)
@@ -14,6 +14,7 @@ class m240729_081512_create_table_incoming_item extends Migration
      */
     public function safeUp()
     {
+        return true;
         $this->createTable(self::TABLE_NAME, [
             'id' => $this->primaryKey(),
             'incoming_id' => $this->string(36)->notNull()->comment('ID из таблицы incoming'),