game2006api/sql/gamedb2006_migrate_240305_01.sql
2024-04-03 13:49:38 +08:00

18 lines
964 B
PL/PgSQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 add column `activate_time` int(11) NOT NULL DEFAULT '0' COMMENT '激活时间';
alter table t_hero add column `seal_type` int(11) NOT NULL DEFAULT '0' COMMENT '0:未封存 1已封存';
alter table t_hero add column `unseal_time` int(11) NOT NULL DEFAULT '0' COMMENT '解封时间';
alter table t_hero drop column base_attr;
alter table t_chip add column `wealth_attr` mediumblob COMMENT '财富值属性';
alter table t_battle_settlement_team add column `status` tinyint(2) NOT NULL DEFAULT '0' COMMENT '0:未结算 1已结算';
insert into version (version) values(2024030501);
commit;