| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- namespace addons\YunfastPay\console\migrations;
- use yii\db\Migration;
- /**
- * Class M230323145234InsertTableStoreMenu
- */
- class M230323145234InsertTableStoreMenu extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- try {
- // 插入表数据
- $sql = "
- INSERT INTO qimall_addons_store_menu
- SET `title` = '商户号设置',
- `app_id` = 0,
- `pid` = 8,
- `url` = 'store/client/setting/merchant',
- `level` = 2,
- `sort` = 999,
- `created_at` = 1679384514,
- `updated_at` = 1679384514,
- `id` = 39
- ";
- $this->execute($sql);
- } catch (\Exception $e) {
- }
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M230323145234InsertTableStoreMenu cannot be reverted.\n";
- return false;
- }
- }
|