From: fomichev Date: Tue, 4 Feb 2025 15:21:34 +0000 (+0300) Subject: Добавление поля check_id_last_sale в Users X-Git-Tag: 1.7~16^2~3 X-Git-Url: https://gitweb.erp-flowers.ru/?a=commitdiff_plain;h=a9d5cb601e543000a872fd868254f069f598be33;p=erp24_rep%2Fyii-erp24%2F.git Добавление поля check_id_last_sale в Users --- diff --git a/erp24/migrations/m250204_143849_add_column_check_id_last_sale_to_user_table.php b/erp24/migrations/m250204_143849_add_column_check_id_last_sale_to_user_table.php index 5cfa8d12..41162fb9 100644 --- a/erp24/migrations/m250204_143849_add_column_check_id_last_sale_to_user_table.php +++ b/erp24/migrations/m250204_143849_add_column_check_id_last_sale_to_user_table.php @@ -21,7 +21,7 @@ class m250204_143849_add_column_check_id_last_sale_to_user_table extends Migrati $this->addColumn( self::TABLE_NAME, 'check_id_last_sale', - $this->string()->null()->comment('GUID последнего чека'), + $this->string()->null()->after('date_last_sale')->comment('GUID последнего чека'), ); }