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

12 lines
422 B
PL/PgSQL

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