hh
This commit is contained in:
32
console/migrations/m181121_103329_create_hh_table.php
Normal file
32
console/migrations/m181121_103329_create_hh_table.php
Normal file
@ -0,0 +1,32 @@
|
||||
<?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');
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user