game2006api/sql/gamedb2006_migrate_240201_01.sql
hujiabin 2a0048ab32 1
2024-02-01 15:12:50 +08:00

12 lines
394 B
PL/PgSQL

begin;
alter table t_chip_page add column `hero_uniid` int(11) NOT NULL DEFAULT '0' COMMENT '英雄唯一id';
alter table t_chip_page drop column page_name;
alter table t_chip_page drop column page_id;
alter table t_chip_page drop index account_page_id;
alter table t_chip_page add UNIQUE KEY `hero_uniid` (`hero_uniid`);
insert into version (version) values(2024020101);
commit;