This commit is contained in:
aozhiwei 2020-12-30 10:17:43 +08:00
parent 25f158b852
commit d5c79f62e9
2 changed files with 8 additions and 1 deletions

View File

@ -51,7 +51,7 @@ CREATE TABLE `user` (
`user_value1` bigint NOT NULL DEFAULT '0' COMMENT 'user_value1',
`user_value2` bigint NOT NULL DEFAULT '0' COMMENT 'user_value2',
`user_value3` bigint NOT NULL DEFAULT '0' COMMENT 'user_value3',
`guild_id` bigint NOT NULL COMMENT '工会id',
`guild_id` bigint NOT NULL DEFAULT '0' COMMENT '工会id',
`guild_job` int(11) NOT NULL DEFAULT '0' COMMENT '公会职位',
`createtime` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
`modifytime` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',

View File

@ -0,0 +1,7 @@
start TRANSACTION;
alter table user modify `guild_id` bigint NOT NULL default 0 COMMENT '工会id';
insert into version (version) values(2020123001);
commit;