You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
434 B
25 lines
434 B
<?php |
|
|
|
use yii\db\Migration; |
|
|
|
/** |
|
* Class m180912_213557_add_users_settings_field |
|
*/ |
|
class m180912_213557_add_users_settings_field extends Migration |
|
{ |
|
/** |
|
* {@inheritdoc} |
|
*/ |
|
public function safeUp() |
|
{ |
|
$this->addColumn('{{%users}}', 'settings', $this->text()); |
|
} |
|
|
|
/** |
|
* {@inheritdoc} |
|
*/ |
|
public function safeDown() |
|
{ |
|
$this->dropColumn('{{%users}}', 'settings'); |
|
} |
|
}
|
|
|