game2006api/sql/migrate_230607_01.sql
aozhiwei 0db0f994ba 1
2023-06-07 15:48:19 +08:00

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;