From: Alexander Smirnov Date: Wed, 15 May 2024 18:04:23 +0000 (+0300) Subject: fix X-Git-Url: https://gitweb.erp-flowers.ru/?a=commitdiff_plain;h=710fe4cb3899361443c9f4c72cfa7b0d50809664;p=yii-erp24%2F.git fix --- 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('Дата и время первой покупки')); } /**