game2001api/sql/gamedb2001_n_migrate_200918_01.sql
aozhiwei bcecdaf38e 1
2020-09-18 18:07:44 +08:00

11 lines
518 B
PL/PgSQL

begin;
alter table user add column `daily_diamond_times` int(11) NOT NULL DEFAULT '0' COMMENT '每日兑换钻石次数';
alter table user add column `newhand` int(11) NOT NULL DEFAULT '0' COMMENT '字节活动礼包领取状态';
alter table user add column `game_times2` int(11) NOT NULL DEFAULT '0' COMMENT '字节活动礼包战斗场次';
alter table user add column `view_times2` int(11) NOT NULL DEFAULT '0' COMMENT '字节活动礼包视频场次';
insert into version (version) values(2020091801);
commit;