diff options
| author | Shauren <shauren.trinity@gmail.com> | 2015-08-30 00:17:08 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2015-08-30 00:17:08 +0200 |
| commit | b564c10b13effed63c7b7dae25117e2e0a2c64e4 (patch) | |
| tree | ea79cf0c9b254aac517f1024602b39615eedb010 /sql | |
| parent | b0107802064a19d69ce06f7bcf8b8394695e6faf (diff) | |
Core/Players: Implemented serverside validation of reserved/profane names
Closes #15357
New library dependency: Boost.Regex
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/hotfixes/2015_08_30_00_hotfixes.sql | 37 |
1 files changed, 37 insertions, 0 deletions
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; |
