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

51 lines
1.5 KiB
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\Migration\MigrationWithDefaultOptions;
class m220225_074149_add_text_settings extends MigrationWithDefaultOptions
{
public function safeUp()
{
$this->insert(
'{{%text_settings}}',
[
'name' => 'info_message_in_questionary_for_birth_place',
'description' => 'Текст сообщения информирующего об форме заполнения поля "Место рождения" на форме анкеты',
'value' => 'Заполнять согласно документу, удостоверяющему личность',
'category' => 2
]
);
$this->insert(
'{{%text_settings}}',
[
'name' => 'info_message_in_questionary_for_passport_form',
'description' => 'Текст сообщения информирующего об форме заполнения формы "паспортные данные" на странице анкеты',
'value' => 'Заполнять согласно документу, удостоверяющему личность',
'category' => 2
]
);
}
public function safeDown()
{
$this->delete(
'{{%text_settings}}',
['name' => [
'info_message_in_questionary_for_birth_place',
'info_message_in_questionary_for_passport_form',
]]
);
}
}