12 lines
429 B
PL/PgSQL
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;
|