| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace addons\WechatVideoShop\console\migrations;
- use yii\db\Migration;
- /**
- * 视频小店添加订单类型搜索
- * Class M250422164437InsertGlobalVarMap
- */
- class M250422164437InsertGlobalVarMap extends Migration
- {
- /**
- * {@inheritdoc}
- */
- public function safeUp()
- {
- $this->execute("INSERT INTO `qimall_global_var_map`(`name`, `title`, `type`, `is_addons`, `status`, `created_at`, `updated_at`) VALUES ('WechatVideoShop', '微信视频小店', 'MarketingTypeMap', 1, 1, 1745311951, 1745311951);
- ;
- ");
- }
- /**
- * {@inheritdoc}
- */
- public function safeDown()
- {
- echo "M250422164437InsertGlobalVarMap cannot be reverted.\n";
- return false;
- }
- }
|