]> gitweb.erp-flowers.ru Git - erp24_rep/yii-erp24/.git/commitdiff
ERP-85 Реализовать обмен данных с 1С Бухгалтерия
authormarina <m.zozirova@gmail.com>
Tue, 6 Aug 2024 09:29:45 +0000 (12:29 +0300)
committermarina <m.zozirova@gmail.com>
Tue, 6 Aug 2024 09:29:45 +0000 (12:29 +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 c515b7a57ff277881bb540638f41347222ff0cae..67e23283a861ad2be772a31cc56fa5c47e041608 100755 (executable)
@@ -16,7 +16,6 @@ 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 29449aa88c371d749d4ecda3d4749eac540f9e72..9b1244bd24fd8fd282007f120ce92ef6a45e30ae 100644 (file)
@@ -12,7 +12,6 @@ class m240722_054604_create_motivation_costs_items_table extends Migration
      */
     public function safeUp()
     {
-        return true;
         $this->execute('SET search_path TO erp24');
         
         // Создаем тип ENUM
index 182bca771a80eb566ca1e18892410eb3f8f3d395..8f18ace4836fd3ef782448d47c69e009296e7a2e 100755 (executable)
@@ -14,7 +14,6 @@ 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'),