M250422164437InsertGlobalVarMap.php 728 B

12345678910111213141516171819202122232425262728293031323334
  1. <?php
  2. namespace addons\WechatVideoShop\console\migrations;
  3. use yii\db\Migration;
  4. /**
  5. * 视频小店添加订单类型搜索
  6. * Class M250422164437InsertGlobalVarMap
  7. */
  8. class M250422164437InsertGlobalVarMap extends Migration
  9. {
  10. /**
  11. * {@inheritdoc}
  12. */
  13. public function safeUp()
  14. {
  15. $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);
  16. ;
  17. ");
  18. }
  19. /**
  20. * {@inheritdoc}
  21. */
  22. public function safeDown()
  23. {
  24. echo "M250422164437InsertGlobalVarMap cannot be reverted.\n";
  25. return false;
  26. }
  27. }