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

6 lines
562 B

  1. -- ljy
  2. ALTER TABLE log_reversi_lottery ADD COLUMN `type` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '活动主类型' after role_id;
  3. ALTER TABLE log_reversi_lottery ADD COLUMN `sub_type` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '活动子类型' after type;
  4. ALTER TABLE log_reversi_lottery ADD COLUMN `gold_before` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '抽奖前彩钻';
  5. ALTER TABLE log_reversi_lottery ADD COLUMN `gold_after` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '抽奖后彩钻';
  6. ALTER TABLE log_reversi_lottery drop column `cost`;