add_holidays

This commit is contained in:
SoHardKI
2019-07-16 11:58:05 +03:00
parent 3af5bcab71
commit e961c3f35f
15 changed files with 491 additions and 0 deletions

View File

@ -0,0 +1,30 @@
<?php
use yii\db\Migration;
/**
* Class m190715_124941_create_table_holiday
*/
class m190715_124941_create_table_holiday extends Migration
{
/**
* {@inheritdoc}
*/
public function safeUp()
{
$this->createTable('holiday',[
'id' => $this->primaryKey(),
'card_id' => $this->integer(11)->notNull(),
'dt_start' => $this->integer(15)->notNull(),
'dt_end' => $this->integer(15)->notNull(),
]);
}
/**
* {@inheritdoc}
*/
public function safeDown()
{
$this->dropTable('holiday');
}
}