ctms/vendor/mdmsoft/yii2-admin/migrations/m160312_050000_create_user.php
2025-04-10 23:19:13 +08:00

43 lines
1.4 KiB
PHP
Executable File

<?php
use yii\db\Migration;
use mdm\admin\components\Configs;
class m160312_050000_create_user 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';
}
$userTable = Configs::instance()->userTable;
// Check if the table exists
if ($this->db->schema->getTableSchema($userTable, true) === null) {
$this->createTable($userTable, [
'id' => $this->primaryKey(),
'username' => $this->string(32)->notNull(),
'auth_key' => $this->string(32)->notNull(),
'password_hash' => $this->string()->notNull(),
'password_reset_token' => $this->string(),
'email' => $this->string()->notNull(),
'status' => $this->smallInteger()->notNull()->defaultValue(10),
'created_at' => $this->integer()->notNull(),
'updated_at' => $this->integer()->notNull(),
], $tableOptions);
}
}
public function down()
{
$userTable = Configs::instance()->userTable;
if ($this->db->schema->getTableSchema($userTable, true) !== null) {
$this->dropTable($userTable);
}
}
}