This commit is contained in:
aozhiwei 2020-07-22 21:51:07 +08:00
parent 492edce525
commit 3b3b1edb48

View File

@ -0,0 +1,8 @@
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;