首页 > 数据库技术 > 详细

【Yii2.0.4】关于advanced模板中数据库迁移Migration的补充

时间:2015-05-18 09:18:41      阅读:437      评论:0      收藏:0      [点我收藏+]

1、文件路径:advanced/console/migrations/m130524_201442_init.php

2、补充点:增加约束“username”“email”验证的唯一性:

原代码:

<?php

use yii\db\Schema;
use yii\db\Migration;

class m130524_201442_init extends Migration
{
    public function up()
    {
        $tableOptions = null;
        if ($this->db->driverName === ‘mysql‘) {
            // http://stackoverflow.com/questions/766809/whats-the-difference-between-utf8-general-ci-and-utf8-unicode-ci
            $tableOptions = ‘CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE=InnoDB‘;
        }

        $this->createTable(‘{{%user}}‘, [
            ‘id‘ => Schema::TYPE_PK,
            ‘username‘ => Schema::TYPE_STRING . ‘ NOT NULL‘,
            ‘auth_key‘ => Schema::TYPE_STRING . ‘(32) NOT NULL‘,
            ‘password_hash‘ => Schema::TYPE_STRING . ‘ NOT NULL‘,
            ‘password_reset_token‘ => Schema::TYPE_STRING,
            ‘email‘ => Schema::TYPE_STRING . ‘ NOT NULL‘,

            ‘status‘ => Schema::TYPE_SMALLINT . ‘ NOT NULL DEFAULT 10‘,
            ‘created_at‘ => Schema::TYPE_INTEGER . ‘ NOT NULL‘,
            ‘updated_at‘ => Schema::TYPE_INTEGER . ‘ NOT NULL‘,
        ], $tableOptions);
    }

    public function down()
    {
        $this->dropTable(‘{{%user}}‘);
    }
}

补充后的代码:

<?php

use yii\db\Schema;
use yii\db\Migration;

class m130524_201442_init extends Migration
{
    public function safeUp()
    {
        $tableOptions = null;
        if ($this->db->driverName === ‘mysql‘) {
            // http://stackoverflow.com/questions/766809/whats-the-difference-between-utf8-general-ci-and-utf8-unicode-ci
            $tableOptions = ‘CHARACTER SET utf8 COLLATE utf8_unicode_ci ENGINE=InnoDB‘;
        }

        $this->createTable(‘{{%user}}‘, [
            ‘id‘ => Schema::TYPE_PK,
            ‘username‘ => Schema::TYPE_STRING . ‘ NOT NULL‘,
            ‘auth_key‘ => Schema::TYPE_STRING . ‘(32) NOT NULL‘,
            ‘password_hash‘ => Schema::TYPE_STRING . ‘ NOT NULL‘,
            ‘password_reset_token‘ => Schema::TYPE_STRING,
            ‘email‘ => Schema::TYPE_STRING . ‘ NOT NULL‘,

            ‘status‘ => Schema::TYPE_SMALLINT . ‘ NOT NULL DEFAULT 10‘,
            ‘created_at‘ => Schema::TYPE_INTEGER . ‘ NOT NULL‘,
            ‘updated_at‘ => Schema::TYPE_INTEGER . ‘ NOT NULL‘,
        ], $tableOptions);
        $this->createIndex(‘username‘, ‘{{%user}}‘, ‘username‘, true);
        $this->createIndex(‘email‘, ‘{{%user}}‘, ‘email‘, true);
    }

    public function safeDown()
    {
        $this->dropTable(‘{{%user}}‘);
    }
}


【Yii2.0.4】关于advanced模板中数据库迁移Migration的补充

原文:http://my.oschina.net/yiihub/blog/416022

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!