m180607_084335_create_author_table.php
431 Bytes
<?php
use yii\db\Migration;
/**
* Handles the creation of table `author`.
*/
class m180607_084335_create_author_table extends Migration
{
/**
* {@inheritdoc}
*/
public function safeUp()
{
$this->createTable('author', [
'id' => $this->primaryKey(),
]);
}
/**
* {@inheritdoc}
*/
public function safeDown()
{
$this->dropTable('author');
}
}