game2006api/sql/migrate_230607_01.sql
aozhiwei 3293255b3c 1
2023-06-07 16:07:19 +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;