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

33 lines
609 B
PHP
Raw Normal View History

2024-03-28 09:51:45 +03:00
<?php
use common\components\Migration\MigrationWithDefaultOptions;
class m220829_063359_chat_killswitch extends MigrationWithDefaultOptions
{
public function safeUp()
{
$this->insert('{{%chat_settings}}', [
'name' => 'enable_chat',
'description' => 'Включить чат с приёмной комиссией',
'value' => 1,
'created_at' => time(),
'updated_at' => time(),
]);
}
public function safeDown()
{
$this->delete('{{%chat_settings}}', ['name' => 'enable_chat']);
}
}