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
429 B
25 lines
429 B
<?php |
|
|
|
use yii\db\Migration; |
|
|
|
/** |
|
* Class m180826_171901_remove_menu_name_field |
|
*/ |
|
class m180826_171901_remove_menu_name_field extends Migration |
|
{ |
|
/** |
|
* {@inheritdoc} |
|
*/ |
|
public function safeUp() |
|
{ |
|
$this->dropColumn('{{%menu}}', 'name'); |
|
} |
|
|
|
/** |
|
* {@inheritdoc} |
|
*/ |
|
public function safeDown() |
|
{ |
|
$this->addColumn('{{%menu}}', 'name', $this->string(255)->notNull()); |
|
} |
|
}
|
|
|