for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
use yii\db\Migration;
/**
* Handles the creation of table `favorite`.
*/
class m180201_155243_create_favorite_table extends Migration
{
* {@inheritdoc}
public function safeUp()
$this->createTable('favorite', [
'id' => $this->primaryKey(),
'label' => $this->string()->notNull(),
'url' => $this->string()->notNull(),
'created_at' => $this->dateTime(),
]);
}
public function safeDown()
$this->dropTable('favorite');