9 lines
273 B
PL/PgSQL
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;
|