| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace addons\Store\console\migrations;
- use yii\db\Migration;
- /**
- * Class M240627065242InsertQimallAddonsStoreMenu
- */
- class M240627065242InsertQimallAddonsStoreMenu extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- // 添加新记录到qimall_addons_store_menu表
- $this->insert('qimall_addons_store_menu', [
- 'id' => 129,
- 'title' => '自定义规格',
- 'app_id' => '0',
- 'pid' => 2,
- 'addons_name' => '',
- 'is_addon' => 0,
- 'url' => 'store/client/specs/index',
- 'icon' => '',
- 'level' => 2,
- 'dev' => 0,
- 'sort' => 999,
- 'params' => null,
- 'tree' => '',
- 'status' => 1,
- 'created_at' => 0,
- 'updated_at' => 0,
- ]);
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- // 删除qimall_addons_store_menu表中的新记录
- $this->delete('qimall_addons_store_menu', ['title' => '自定义规格', 'url' => 'store/client/specs/index']);
- }
- }
|