From b564c10b13effed63c7b7dae25117e2e0a2c64e4 Mon Sep 17 00:00:00 2001 From: Shauren Date: Sun, 30 Aug 2015 00:17:08 +0200 Subject: Core/Players: Implemented serverside validation of reserved/profane names Closes #15357 New library dependency: Boost.Regex --- sql/updates/hotfixes/2015_08_30_00_hotfixes.sql | 37 +++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 sql/updates/hotfixes/2015_08_30_00_hotfixes.sql (limited to 'sql') diff --git a/sql/updates/hotfixes/2015_08_30_00_hotfixes.sql b/sql/updates/hotfixes/2015_08_30_00_hotfixes.sql new file mode 100644 index 00000000000..820b5a52308 --- /dev/null +++ b/sql/updates/hotfixes/2015_08_30_00_hotfixes.sql @@ -0,0 +1,37 @@ +-- +-- Table structure for table `names_profanity` +-- + +DROP TABLE IF EXISTS `names_profanity`; +CREATE TABLE `names_profanity` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `Language` int(10) NOT NULL DEFAULT '0', + `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +-- +-- Table structure for table `names_reserved` +-- + +DROP TABLE IF EXISTS `names_reserved`; +CREATE TABLE `names_reserved` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; + +-- +-- Table structure for table `names_reserved_locale` +-- + +DROP TABLE IF EXISTS `names_reserved_locale`; +CREATE TABLE `names_reserved_locale` ( + `ID` int(10) unsigned NOT NULL DEFAULT '0', + `Name` text, + `LocaleMask` int(10) unsigned NOT NULL DEFAULT '0', + `VerifiedBuild` smallint(6) NOT NULL DEFAULT '0', + PRIMARY KEY (`ID`) +) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- cgit v1.2.3