mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-27 20:32:21 +01:00
Core/Guilds: Implemented GuildFinder.
This commit is contained in:
@@ -0,0 +1,40 @@
|
||||
/*!40101 SET NAMES utf8 */;
|
||||
|
||||
/*!40101 SET SQL_MODE=''*/;
|
||||
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
/* Table structure for table `guild_finder_applicant` */
|
||||
|
||||
DROP TABLE IF EXISTS `guild_finder_applicant`;
|
||||
|
||||
CREATE TABLE `guild_finder_applicant` (
|
||||
`guildId` int(10) unsigned DEFAULT NULL,
|
||||
`playerGuid` int(10) unsigned DEFAULT NULL,
|
||||
`availability` tinyint(3) unsigned DEFAULT '0',
|
||||
`classRole` tinyint(3) unsigned DEFAULT '0',
|
||||
`interests` tinyint(3) unsigned DEFAULT '0',
|
||||
`comment` varchar(255) DEFAULT NULL,
|
||||
`submitTime` int(10) unsigned DEFAULT NULL,
|
||||
UNIQUE KEY `guildId` (`guildId`,`playerGuid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
|
||||
/* Table structure for table `guild_finder_guild_settings` */
|
||||
|
||||
DROP TABLE IF EXISTS `guild_finder_guild_settings`;
|
||||
|
||||
CREATE TABLE `guild_finder_guild_settings` (
|
||||
`guildId` int(10) unsigned NOT NULL,
|
||||
`availability` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`classRoles` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`interests` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`level` tinyint(3) unsigned NOT NULL DEFAULT '1',
|
||||
`listed` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`comment` varchar(255) DEFAULT NULL,
|
||||
PRIMARY KEY (`guildId`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
Reference in New Issue
Block a user