15 lines
522 B
PL/PgSQL
15 lines
522 B
PL/PgSQL
begin;
|
|
|
|
alter table t_hero add column `current_wealth` int(11) NOT NULL DEFAULT '0' COMMENT '当前财富值';
|
|
alter table t_hero add column `current_wealth_modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '当前财富值修改时间';
|
|
alter table t_hero add column `wealth_attr` mediumblob COMMENT '财富值属性';
|
|
alter table t_hero drop column base_attr;
|
|
|
|
alter table t_chip add column `wealth_attr` mediumblob COMMENT '财富值属性';
|
|
|
|
|
|
|
|
insert into version (version) values(2024030501);
|
|
|
|
commit;
|