You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.3 KiB

7 years ago
<?php
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 utf8mb4 COLLATE utf8mb4_unicode_ci ENGINE=InnoDB';
7 years ago
}
3 years ago
$this->createTable('{{%users}}', [
'id' => $this->bigPrimaryKey(),
'username' => $this->string(),
7 years ago
'auth_key' => $this->string(32)->notNull(),
3 years ago
'password_hash' => $this->string(),
7 years ago
'password_reset_token' => $this->string()->unique(),
3 years ago
'email' => $this->string(),
'email_confirm_token' => $this->string()->unique(),
'user_pic' => $this->string(255)->null(),
'settings' => $this->text(),
'backend_language' => $this->string(10),
'frontend_language' => $this->string(10),
7 years ago
'status' => $this->smallInteger()->notNull()->defaultValue(10),
'created_at' => $this->integer()->notNull(),
'updated_at' => $this->integer()->notNull(),
], $tableOptions);
}
public function down()
{
$this->dropTable('{{%user}}');
}
}