31 lines
587 B
PHP
31 lines
587 B
PHP
|
<?php
|
||
|
|
||
|
use yii\db\Migration;
|
||
|
|
||
|
/**
|
||
|
* Handles the creation of table `{{%template}}`.
|
||
|
*/
|
||
|
class m211223_090918_create_template_table extends Migration
|
||
|
{
|
||
|
/**
|
||
|
* {@inheritdoc}
|
||
|
*/
|
||
|
public function safeUp()
|
||
|
{
|
||
|
$this->createTable('{{%template}}', [
|
||
|
'id' => $this->primaryKey(),
|
||
|
'title' => $this->string(),
|
||
|
'created_at' => $this->dateTime(),
|
||
|
'updated_at' => $this->dateTime()
|
||
|
]);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* {@inheritdoc}
|
||
|
*/
|
||
|
public function safeDown()
|
||
|
{
|
||
|
$this->dropTable('{{%template}}');
|
||
|
}
|
||
|
}
|