This commit is contained in:
aozhiwei 2020-11-26 17:51:28 +08:00
parent db19ec61ec
commit 440fa2aa6b

View File

@ -0,0 +1,11 @@
start transaction;
LOCK TABLES `user` WRITE;
alter table `user` add column `contribute` int(11) NOT NULL DEFAULT '0' COMMENT '贡献度';
UNLOCK TABLES;
LOCK TABLES `version` WRITE;
insert into `version` (version) values(2020112601);
UNLOCK TABLES;
commit;