9 lines
286 B
PL/PgSQL
9 lines
286 B
PL/PgSQL
begin;
|
|
|
|
alter table user add column `first_day_ad` int(11) NOT NULL DEFAULT '0' COMMENT '每日看广告次数';
|
|
alter table user add column `share_video_times` int(11) NOT NULL DEFAULT '0' COMMENT '每日分享视频次数';
|
|
|
|
insert into version (version) values(2020072201);
|
|
|
|
commit;
|