This commit is contained in:
SoHardKI
2019-07-16 12:16:13 +03:00
parent c708dd902a
commit 3d915d77bc
3 changed files with 5 additions and 8 deletions

View File

@ -15,8 +15,8 @@ class m190715_124941_create_table_holiday extends Migration
$this->createTable('holiday',[
'id' => $this->primaryKey(),
'card_id' => $this->integer(11)->notNull(),
'dt_start' => $this->integer(15)->notNull(),
'dt_end' => $this->integer(15)->notNull(),
'dt_start' => $this->integer(11)->notNull(),
'dt_end' => $this->integer(11)->notNull(),
]);
}