game2006api/sql/archived/migrate_230607_01.sql
aozhiwei 07d5982460 1
2023-07-13 11:51:12 +08:00

12 lines
429 B
PL/PgSQL

begin;
alter table t_chip add column `active_token_id` varchar(60) NOT NULL DEFAULT '' COMMENT 'active_token_id';
alter table t_chip add column `active_count` int(11) NOT NULL DEFAULT '0' COMMENT 'active_count';
alter table t_transaction add column `address` varchar(60) NOT NULL DEFAULT '' COMMENT 'address';
alter table t_transaction add KEY `address` (`address`);
insert into version (version) values(2023060701);
commit;