9 lines
247 B
PL/PgSQL
9 lines
247 B
PL/PgSQL
begin;
|
|
|
|
alter table user add column `spring_adtimes` int(11) NOT NULL DEFAULT '0' COMMENT '春节抽奖活动广告次数';
|
|
update user set mid_aut_status=0, mid_aut_adtimes=0 where 1=1;
|
|
|
|
insert into version (version) values(2021012601);
|
|
|
|
commit;
|