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

39 lines
633 B
PHP
Raw Normal View History

2024-03-28 09:51:45 +03:00
<?php
use common\components\Migration\MigrationWithDefaultOptions;
class m160720_072703_convert_to_draw extends MigrationWithDefaultOptions
{
public function up()
{
$this->dropTable('{{%dormitory_list}}');
$this->dropTable('{{%dormitory_faculty}}');
$this->dropTable('{{%dormitory_register}}');
$this->dropTable('{{%dictionary_dormitory_reason}}');
$this->dropTable('{{%exam_dates}}');
$this->dropTable('{{%dictionary_exam_reason}}');
$this->dropTable('{{%dictionary_exam_base}}');
}
public function down()
{
}
}