Commit cca97f37 by Alexander Makarov

Merge pull request #2928 from gonimar/patch-13

use alias format for table names
parents 4a0123ed 4575c3c3
...@@ -11,7 +11,7 @@ class m130524_201442_init extends \yii\db\Migration ...@@ -11,7 +11,7 @@ class m130524_201442_init extends \yii\db\Migration
$tableOptions = 'CHARACTER SET utf8 COLLATE utf8_general_ci ENGINE=InnoDB'; $tableOptions = 'CHARACTER SET utf8 COLLATE utf8_general_ci ENGINE=InnoDB';
} }
$this->createTable($this->db->tablePrefix . 'user', [ $this->createTable('{{%user}}', [
'id' => Schema::TYPE_PK, 'id' => Schema::TYPE_PK,
'username' => Schema::TYPE_STRING . ' NOT NULL', 'username' => Schema::TYPE_STRING . ' NOT NULL',
'auth_key' => Schema::TYPE_STRING . '(32) NOT NULL', 'auth_key' => Schema::TYPE_STRING . '(32) NOT NULL',
...@@ -28,6 +28,6 @@ class m130524_201442_init extends \yii\db\Migration ...@@ -28,6 +28,6 @@ class m130524_201442_init extends \yii\db\Migration
public function down() public function down()
{ {
$this->dropTable($this->db->tablePrefix . 'user'); $this->dropTable('{{%user}}');
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment