mirror of
https://github.com/elyby/accounts.git
synced 2024-11-07 00:29:00 +05:30
184ff02240
Из Account вынесена логика аутентификации в дочерний AccountIdentity Исправлена логика валидации при вызове на неизменённом нике для формы смены ника
19 lines
473 B
PHP
19 lines
473 B
PHP
<?php
|
|
|
|
use console\db\Migration;
|
|
|
|
class m160512_080955_usernames_history_encoding extends Migration {
|
|
|
|
public function safeUp() {
|
|
$this->getDb()->createCommand('
|
|
ALTER TABLE {{%usernames_history}}
|
|
MODIFY username VARCHAR(255) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL
|
|
')->execute();
|
|
}
|
|
|
|
public function safeDown() {
|
|
$this->alterColumn('{{%usernames_history}}', 'username', $this->string()->notNull());
|
|
}
|
|
|
|
}
|