write migrations for documents

This commit is contained in:
iIronside
2021-12-23 14:13:22 +03:00
parent ac4e5d62ec
commit f3deab46cc
9 changed files with 203 additions and 8 deletions

View File

@ -0,0 +1,30 @@
<?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}}');
}
}