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

33 lines
609 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\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']);
}
}