guild/console/migrations/m181121_103329_create_hh_table.php

33 lines
639 B
PHP
Raw Normal View History

2018-11-21 17:02:14 +03:00
<?php
use yii\db\Migration;
/**
* Handles the creation of table `hh`.
*/
class m181121_103329_create_hh_table extends Migration
{
/**
* {@inheritdoc}
*/
public function safeUp()
{
$this->createTable('hh', [
'id' => $this->primaryKey(),
'hh_id' => $this->integer(11),
'url' => $this->string(255)->notNull(),
'title' => $this->string(255),
'dt_add' => $this->integer(11),
'photo' => $this->string(255)
]);
}
/**
* {@inheritdoc}
*/
public function safeDown()
{
$this->dropTable('hh');
}
}