1
This commit is contained in:
parent
629eeee566
commit
5dad6f9e92
@ -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',
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user