game2006api/sql/archived/gamedb2006_migrate_240129_01.sql
hujiabin a0593a21da 1
2024-04-23 20:34:45 +08:00

16 lines
716 B
PL/PgSQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

begin;
alter table t_rank_battle add column `mode` int(11) NOT NULL DEFAULT '0' COMMENT '1:4v4 2pvp ';
alter table t_rank_battle add column `class` int(11) NOT NULL DEFAULT '0' COMMENT '1:总榜 2日榜 3周榜';
alter table t_rank_battle add column `writetime` int(11) NOT NULL DEFAULT '0' COMMENT '记录时间';
alter table t_rank_battle add UNIQUE KEY `account_mode_class_type_writetime` (`account_id`,`mode`,`class`,`type`,`writetime`);
alter table t_rank_battle drop index account_id_type;
alter table t_user_use_emoji add column `used` mediumblob COMMENT '使用的表情';
alter table t_user_use_emoji drop column value;
insert into version (version) values(2024012901);
commit;