move Da\User migrations from resources to dedicated namespace

This commit is contained in:
resurtm
2016-12-13 13:27:43 +06:00
parent ab7665eea5
commit 51a8a2b335
4 changed files with 14 additions and 7 deletions

View File

@ -0,0 +1,33 @@
<?php
namespace Da\User\Migration;
use yii\db\Migration;
class m000000_000001_create_user_table extends Migration
{
public function up()
{
$this->createTable('{{%user}}', [
'id' => $this->primaryKey(),
'username' => $this->string(255)->notNull(),
'email' => $this->string(255)->notNull(),
'password_hash' => $this->string(60)->notNull(),
'auth_key' => $this->string(32)->notNull(),
'unconfirmed_email' => $this->string(255),
'registration_ip' => $this->string(45),
'flags' => $this->integer()->notNull()->defaultValue('0'),
'confirmed_at' => $this->integer(),
'blocked_at' => $this->integer(),
'updated_at' => $this->integer()->notNull(),
'created_at' => $this->integer()->notNull()
]);
$this->createIndex('idx_user_username', '{{%user}}', 'username', true);
$this->createIndex('idx_user_email', '{{%user}}', 'email', true);
}
public function down()
{
$this->dropTable('{{%user}}');
}
}