mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-16 07:30:42 +01:00
SQL/Structure: Allow 20 character guild names.
This commit is contained in:
@@ -1734,7 +1734,7 @@ DROP TABLE IF EXISTS `guild_rank`;
|
||||
CREATE TABLE `guild_rank` (
|
||||
`guildid` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`rid` tinyint(3) unsigned NOT NULL,
|
||||
`rname` varchar(15) NOT NULL DEFAULT '',
|
||||
`rname` varchar(20) NOT NULL DEFAULT '',
|
||||
`rights` mediumint(8) unsigned NOT NULL DEFAULT '0',
|
||||
`BankMoneyPerDay` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guildid`,`rid`),
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
ALTER TABLE `guild_rank` CHANGE `rname` `rname` VARCHAR(20) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT '' NOT NULL;
|
||||
Reference in New Issue
Block a user