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

5 line
276 B

  1. ALTER TABLE `player_liveness`
  2. ADD COLUMN `live` int(11) NOT NULL DEFAULT 0 COMMENT '活跃' AFTER `exp`,
  3. ADD COLUMN `olive` int(11) NOT NULL DEFAULT 0 COMMENT '昨日活跃' AFTER `live`,
  4. ADD COLUMN `ltime` int(11) NOT NULL DEFAULT 0 COMMENT '上次更新' AFTER `olive`;