game2006api/sql/gamedb2006_migrate_241001_01.sql
hujiabin 7ffdb83083 1
2024-09-30 18:26:17 +08:00

9 lines
273 B
PL/PgSQL

begin;
alter table t_hero add column `gold_times` int(11) NOT NULL DEFAULT '0' COMMENT '打金次数';
alter table t_hero add column `gold_modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '打金时间';
insert into version (version) values(2024092401);
commit;