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

10 lines
510 B

-- liushl
ALTER TABLE equipment ADD COLUMN
`stars_info` varchar(1000) NOT NULL DEFAULT '[]' COMMENT '节点选择' AFTER `stars`;
CREATE TABLE role_war_soul(
`role_id` bigint(20) unsigned NOT NULL DEFAULT '0' COMMENT '玩家ID',
`pos_list` varchar(100) NOT NULL DEFAULT '[]' COMMENT '阵位解锁状态',
`collect_award` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '收集领奖进度',
PRIMARY KEY (`role_id`)
)ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='战魂-玩家数据(合服保留)';