portal.mkgtu.ru/common/migrations/db/m211101_074742_change_setti...

39 lines
870 B
PHP
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
use common\components\LikeQueryManager;
use yii\db\Migration;
class m211101_074742_change_settings_label extends Migration
{
public function safeUp()
{
$tn = '{{%filters_setting}}';
Yii::t('abiturient/filter-table', 'Подпись колонки для поля "fio" в таблице фильтров: `ФИО`');
$this->update(
$tn,
['label' => 'Подпись колонки для поля "fio" в таблице фильтров: `ФИО`'],
[LikeQueryManager::getActionName(), "{$tn}.label", 'ФИО']
);
}
public function safeDown()
{
$tn = '{{%filters_setting}}';
$this->update(
$tn,
['label' => 'ФИО'],
[LikeQueryManager::getActionName(), "{$tn}.label", 'Ф. И. О.']
);
}
}