mirror of
https://github.com/Sarjuuk/aowow.git
synced 2025-11-29 15:58:16 +08:00
Profiler preparations
* Setup - accessing realm info by way of Util function - added table ?_talents * Lists - added support for querying multiple databases with the same structure at once (read: realms) - added support for exact string matches and forcing collate of fields to ci * JS - renamed occurences of 'subregion' to 'battlegroup' to be in line with other scripts (the usage is the same)
This commit is contained in:
@@ -2201,6 +2201,27 @@ CREATE TABLE `aowow_spellvariables` (
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `aowow_talents`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `aowow_talents`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `aowow_talents` (
|
||||
`id` smallint(5) unsigned NOT NULL,
|
||||
`class` tinyint(3) unsigned NOT NULL,
|
||||
`tab` tinyint(3) unsigned NOT NULL,
|
||||
`row` tinyint(3) unsigned NOT NULL,
|
||||
`col` tinyint(3) unsigned NOT NULL,
|
||||
`spell` mediumint(8) unsigned NOT NULL,
|
||||
`rank` tinyint(3) unsigned NOT NULL,
|
||||
PRIMARY KEY (`id`, `rank`),
|
||||
INDEX `spell` (`spell`),
|
||||
INDEX `class` (`class`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Table structure for table `aowow_taxinodes`
|
||||
--
|
||||
|
||||
Reference in New Issue
Block a user