game2006api/sql/archived/gamedb2006_migrate_240201_01.sql
hujiabin a0593a21da 1
2024-04-23 20:34:45 +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;