m170721_133313_create_city_table.php 591 Bytes
<?php

use yii\db\Migration;

/**
 * Handles the creation of table `city`.
 */
class m170721_133313_create_city_table extends Migration
{
    /**
     * @inheritdoc
     */
    public function up()
    {
        $this->createTable('city', [
            'id'        => $this->primaryKey(),
            'sort'      => $this->integer(),
            'status'     => $this->boolean()
                ->defaultValue(true),
            'coords'     => $this->string(),
        ]);
    }

    /**
     * @inheritdoc
     */
    public function down()
    {
        $this->dropTable('city');
    }
}