game2006api/sql/archived/gamedb2006_migrate_240423_01.sql
hujiabin 21d7085817 1
2024-05-09 11:44:41 +08:00

12 lines
422 B
PL/PgSQL

begin;
alter table t_hero add column `is_old` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0:展示红点 1:不用展示 ';
alter table t_chip add column `is_old` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0:展示红点 1:不用展示 ';
alter table t_bag add column `is_old` tinyint(4) NOT NULL DEFAULT '0' COMMENT '0:展示红点 1:不用展示 ';
insert into version (version) values(2024042301);
commit;