源战役
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
535 B

  1. -- hh
  2. -- 活动档位红点礼包
  3. ALTER TABLE `custom_act_data`
  4. MODIFY COLUMN `red_gift` varchar(500) NOT NULL DEFAULT '[]' COMMENT '红点礼包';
  5. -- huangyongxing
  6. -- 删除多余数据库表
  7. DROP TABLE IF EXISTS `server_info`;
  8. DROP TABLE IF EXISTS `server_top_n_processes`;
  9. DROP TABLE IF EXISTS `server_watchdog`;
  10. DROP TABLE IF EXISTS `server`;
  11. -- 规范几个混乱的表用法,修改merge_server表名为server_env
  12. RENAME TABLE `merge_server` TO `server_env`;
  13. ALTER TABLE `server_env` COMMENT = '游戏服环境参数表';