m210602_105634_host.php 1 KB
<?php

use yii\db\Migration;

/**
 * Class m210602_105634_host
 */
class m210602_105634_host extends Migration
{
    /**
     * {@inheritdoc}
     */
    public function safeUp()
    {
        $this->createTable('{{%host}}', [
            'id' => $this->primaryKey(),
            'domain' => $this->string(256)->notNull()->unique()->comment('Домен'),
            'created_at' => $this->dateTime()->comment('Дата записи'),
            'csv_date' => $this->dateTime()->comment('Дата CSV'),
            'wis_date' => $this->dateTime()->null()->comment('Дата проверки домена'),
            'wis_status' => $this->tinyInteger(1)->notNull()->defaultValue(0)->comment('Статус'),
            'tix' => $this->integer(11)->notNull()->defaultValue(0)->comment('Показатель'),
        ], 'CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci ENGINE=InnoDB');
    }

    /**
     * {@inheritdoc}
     */
    public function safeDown()
    {
        $this->dropTable('{{%host}}');
    }


}