forked from cmangos/mangos-classic
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
12 changed files
with
277 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
33 changes: 33 additions & 0 deletions
33
sql/updates/characters/z9999_02_characters_custom_dualspec.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
DROP TABLE IF EXISTS `character_altspec`; | ||
CREATE TABLE `character_altspec` ( | ||
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier', | ||
`altspells` int(11) unsigned NOT NULL default '0', | ||
PRIMARY KEY (`guid`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player Dual Spec System'; | ||
|
||
-- | ||
-- Dumping data for table `characters_altspec` | ||
-- | ||
|
||
LOCK TABLES `character_altspec` WRITE; | ||
/*!40000 ALTER TABLE `character_altspec` DISABLE KEYS */; | ||
/*!40000 ALTER TABLE `character_altspec` ENABLE KEYS */; | ||
UNLOCK TABLES; | ||
|
||
DROP TABLE IF EXISTS `character_altspec_action`; | ||
CREATE TABLE `character_altspec_action` ( | ||
`guid` int(11) unsigned NOT NULL default '0' COMMENT 'Global Unique Identifier', | ||
`button` tinyint(3) unsigned NOT NULL default '0', | ||
`action` smallint(5) unsigned NOT NULL default '0', | ||
`type` tinyint(3) unsigned NOT NULL default '0', | ||
PRIMARY KEY (`guid`,`button`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player Dual Spec System, table for actions'; | ||
|
||
-- | ||
-- Dumping data for table `character_altspec_action` | ||
-- | ||
|
||
LOCK TABLES `character_altspec_action` WRITE; | ||
/*!40000 ALTER TABLE `character_altspec_action` DISABLE KEYS */; | ||
/*!40000 ALTER TABLE `character_altspec_action` ENABLE KEYS */; | ||
UNLOCK TABLES; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters