This commit is contained in:
aozhiwei 2020-04-30 10:16:05 +08:00
parent 0ddad93c0c
commit 7026cc9088

View File

@ -0,0 +1,11 @@
begin;
alter table user add column `daily_order1` int(11) NOT NULL DEFAULT '0' COMMENT '每日免费宝箱1';
alter table user add column `daily_order2` int(11) NOT NULL DEFAULT '0' COMMENT '每日免费宝箱2';
alter table user add column `daily_order3` int(11) NOT NULL DEFAULT '0' COMMENT '每日免费宝箱3';
alter table user add column `first_bee` int(11) NOT NULL DEFAULT '0' COMMENT '首次蜜蜂抽奖';
alter table bag add column `num` int(11) NOT NULL DEFAULT '0' COMMENT '数量';
insert into version (version) values(20200430);
commit;