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

28 lines
1.7 KiB

  1. -- ljy
  2. ALTER TABLE `player_low` ADD COLUMN `c_default` tinyint(2) UNSIGNED NOT NULL DEFAULT 0 COMMENT '是否自选职业';
  3. -- tyl
  4. -- 协助感谢信 和 记录表
  5. CREATE TABLE `guild_support_thank` (
  6. `support_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '协助唯一Id',
  7. `guild_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '社团Id',
  8. `ask_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '请求者Id',
  9. `support_cfg_id` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '协助配置Id',
  10. `role_list` varchar(1000) NOT NULL DEFAULT '[]' COMMENT '角色列表',
  11. `content` varchar(500) NOT NULL DEFAULT '[]' COMMENT '协助内容',
  12. `is_send` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '是否已经发送',
  13. `time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '时间',
  14. PRIMARY KEY (`support_id`)
  15. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='社团协助-感谢信';
  16. CREATE TABLE `guild_support_log` (
  17. `support_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '协助唯一Id',
  18. `guild_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '社团Id',
  19. `role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '角色Id',
  20. `ask_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '请求者Id',
  21. `support_cfg_id` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '协助配置Id',
  22. `content` varchar(500) NOT NULL DEFAULT '[]' COMMENT '内容',
  23. `chat_msg` varchar(1000) NOT NULL DEFAULT '' COMMENT '交流信息',
  24. `is_receive` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '是否领取',
  25. `time` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '时间',
  26. PRIMARY KEY (`support_id`,`role_id`)
  27. ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT COMMENT='社团协助-协助记录';