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

49 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_083857_add_text_settings extends MigrationWithDefaultOptions
{
public function safeUp()
{
$this->insert(
'{{%text_settings}}',
[
'name' => 'alert_message_in_education_for_form',
'description' => 'Текст сообщения информирующего об форме заполнения формы "Документ об образовании" на странице образования',
'value' => 'Заполнять строго по документу об образовании',
'category' => 5
]
);
$this->insert(
'{{%text_settings}}',
[
'name' => 'info_message_in_education_for_series',
'description' => 'Текст сообщения информирующего об условии заполнения поля "серия" в форме "Документ об образовании"',
'value' => 'Серия заполняется только для документов выданным до 2012 года',
'category' => 5
]
);
}
public function safeDown()
{
$this->delete(
'{{%text_settings}}',
['name' => [
'alert_message_in_education_for_form',
'info_message_in_education_for_series',
]]
);
}
}