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;