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

8 lines
360 B

  1. -- zmh
  2. -- 社团合并
  3. ALTER TABLE `guild_merge`
  4. DROP COLUMN `identity`,
  5. DROP COLUMN `create_time`,
  6. CHANGE COLUMN `target` `tapply` bigint(20) UNSIGNED NOT NULL DEFAULT 0 COMMENT '发出的申请' AFTER `guild_id`,
  7. ADD COLUMN `fapplys` varchar(2000) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '[]' COMMENT '收到的申请' AFTER `tapply`;