| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- <?php
- namespace app\migrations;
- use common\models\backend\Menu;
- use yii\db\Migration;
- /**
- * Class M250709092644CreateGoodsDescriptionMenu
- */
- class M250709092644CreateGoodsDescriptionTemplateMenu extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $data = [
- [
- 'cate_id' => '2',// 类型[1=平台,2=商城]
- 'pid' => '32',
- 'title' => '商品说明',
- 'route' => 'mall/goods/description-template',
- 'icon' => '',
- 'authItemChild' => []
- ],
- ];
- Menu::migrateCreateMenu($data);
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- return false;
- }
- /*
- // Use up()/down() to run migration code without a transaction.
- public function up()
- {
- }
- public function down()
- {
- echo "M250709092644CreateGoodsDescriptionMenu cannot be reverted.\n";
- return false;
- }
- */
- }
|