This commit is contained in:
aozhiwei 2020-11-24 11:57:16 +08:00
parent 629eeee566
commit 5dad6f9e92
2 changed files with 10 additions and 0 deletions

View File

@ -152,6 +152,8 @@ CREATE TABLE `guild_apply` (
`sender_nickname` tinyblob COMMENT 'nickname',
`sender_avatar_url` varchar(256) CHARACTER SET utf8 NOT NULL DEFAULT '' COMMENT '',
`sender_sex` int(11) NOT NULL DEFAULT '0' COMMENT 'sex',
`sender_vip_lv` int(11) NOT NULL DEFAULT '0' COMMENT 'vip_lv',
`sender_head` int(11) NOT NULL DEFAULT '0' COMMENT 'head',
`sender_data_version1` int(11) NOT NULL DEFAULT '0' COMMENT 'data_version1',
`sender_user_value1` bigint NOT NULL DEFAULT '0' COMMENT 'user_value1',
`sender_user_value2` bigint NOT NULL DEFAULT '0' COMMENT 'user_value2',
@ -181,6 +183,8 @@ CREATE TABLE `friend_apply` (
`sender_nickname` tinyblob COMMENT 'nickname',
`sender_avatar_url` varchar(256) CHARACTER SET utf8 NOT NULL DEFAULT '' COMMENT '',
`sender_sex` int(11) NOT NULL DEFAULT '0' COMMENT 'sex',
`sender_vip_lv` int(11) NOT NULL DEFAULT '0' COMMENT 'vip_lv',
`sender_head` int(11) NOT NULL DEFAULT '0' COMMENT 'head',
`sender_data_version1` int(11) NOT NULL DEFAULT '0' COMMENT 'data_version1',
`sender_user_value1` bigint NOT NULL DEFAULT '0' COMMENT 'user_value1',
`sender_user_value2` bigint NOT NULL DEFAULT '0' COMMENT 'user_value2',

View File

@ -5,6 +5,12 @@ alter table `guild` add column `owner_head` int(11) NOT NULL DEFAULT '0' COMMENT
alter table `guild` add column `creator_vip_lv` int(11) NOT NULL DEFAULT '0' COMMENT 'creator vip等级';
alter table `guild` add column `creator_head` int(11) NOT NULL DEFAULT '0' COMMENT 'creator 头像框';
alter table `guild_apply` add column `sender_vip_lv` int(11) NOT NULL DEFAULT '0' COMMENT 'vip_lv';
alter table `guild_apply` add column `sender_head` int(11) NOT NULL DEFAULT '0' COMMENT 'head';
alter table `friend_apply` add column `sender_vip_lv` int(11) NOT NULL DEFAULT '0' COMMENT 'vip_lv';
alter table `friend_apply` add column `sender_head` int(11) NOT NULL DEFAULT '0' COMMENT 'head';
insert into version (version) values(2020112301);
commit;