9 lines
260 B
PL/PgSQL
9 lines
260 B
PL/PgSQL
begin;
|
|
|
|
alter table user add column `blobdata` mediumblob NOT NULL DEFAULT '' COMMENT 'cpa数据json';
|
|
alter table user add column `cpa_times` int(11) NOT NULL DEFAULT '0' COMMENT 'cpa看视频次数';
|
|
|
|
insert into version (version) values(20210119);
|
|
|
|
commit;
|