9 lines
273 B
PL/PgSQL
9 lines
273 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';
|
|
|
|
insert into version (version) values(2023060701);
|
|
|
|
commit;
|