源战役
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.

25 lines
1.2 KiB

  1. -- liushl
  2. ALTER TABLE `market_goods` ADD COLUMN
  3. `sys_buyback_count` smallint(5) unsigned NOT NULL DEFAULT '0' COMMENT '系统回购次数' AFTER `extra_attr`;
  4. -- tyl
  5. -- 社团竞速团长任务
  6. CREATE TABLE `guild_race_rank_task` (
  7. `guild_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '公会Id',
  8. `task_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '任务Id',
  9. `progress` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '进度',
  10. `status` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '任务状态 0-未完成 1-已完成 2-已领取',
  11. PRIMARY KEY (`guild_id`,`task_id`)
  12. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='社团竞速-团长任务';
  13. -- 2021-07-01
  14. -- huangyongxing
  15. -- ta_agent关服时临时存储未及时上报的数据
  16. -- 合服时修改id直接合并数据条目
  17. CREATE TABLE `ta_agent_wait_upload` (
  18. `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT COMMENT '数据键',
  19. `type` tinyint(3) UNSIGNED NOT NULL DEFAULT 1 COMMENT '数据类型[1-normal/2-delay]',
  20. `data` text CHARACTER SET utf8 COLLATE utf8_general_ci NULL COMMENT '数据',
  21. PRIMARY KEY (`id`)
  22. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci COMMENT='ta_agent关服时临时存储未及时上报的数据';