From 710fe4cb3899361443c9f4c72cfa7b0d50809664 Mon Sep 17 00:00:00 2001 From: Alexander Smirnov Date: Wed, 15 May 2024 21:04:23 +0300 Subject: [PATCH] fix --- ...0515_155603_alter_table_users_add_date_first_sale_column.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erp24/migrations/m240515_155603_alter_table_users_add_date_first_sale_column.php b/erp24/migrations/m240515_155603_alter_table_users_add_date_first_sale_column.php index 098341b..e24bb42 100755 --- a/erp24/migrations/m240515_155603_alter_table_users_add_date_first_sale_column.php +++ b/erp24/migrations/m240515_155603_alter_table_users_add_date_first_sale_column.php @@ -14,7 +14,7 @@ class m240515_155603_alter_table_users_add_date_first_sale_column extends Migrat public function safeUp() { $this->addColumn(self::TABLE_NAME, 'date_first_sale', $this->dateTime()->null() - ->after('date_last_sale')->comment('Время первой покупки')); + ->after('date_last_sale')->comment('Дата и время первой покупки')); } /** -- 2.39.5