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

14 line
458 B

  1. -- hh
  2. -- 时装日志修改
  3. ALTER TABLE `log_fashion_activate`
  4. ADD COLUMN `color_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '颜色ID' AFTER `fashion_id`;
  5. ALTER TABLE `log_fashion_star`
  6. ADD COLUMN `color_id` int(11) UNSIGNED NOT NULL DEFAULT 0 COMMENT '颜色ID' AFTER `fashion_id`;
  7. -- huangyongxing
  8. -- 扩充血量字段长度
  9. ALTER TABLE `player_state`
  10. MODIFY COLUMN `hp` bigint(20) UNSIGNED NOT NULL DEFAULT 0 COMMENT '气血' AFTER `y`;