mirror of
https://github.com/elyby/accounts.git
synced 2024-11-06 08:11:24 +05:30
22 lines
648 B
PHP
22 lines
648 B
PHP
<?php
|
|
|
|
use console\db\Migration;
|
|
|
|
class m160311_211107_password_change_time extends Migration {
|
|
|
|
public function safeUp() {
|
|
$this->addColumn('{{%accounts}}', 'password_changed_at', $this->integer()->notNull());
|
|
$this->getDb()->createCommand('
|
|
UPDATE {{%accounts}}
|
|
SET password_changed_at = created_at
|
|
')->execute();
|
|
$this->dropColumn('{{%accounts}}', 'auth_key');
|
|
}
|
|
|
|
public function safeDown() {
|
|
$this->dropColumn('{{%accounts}}', 'password_changed_at');
|
|
$this->addColumn('{{%accounts}}', 'auth_key', $this->string(32)->notNull() . ' AFTER `status`');
|
|
}
|
|
|
|
}
|