diff options
| author | Kudlaty <none@none> | 2009-12-14 20:47:43 +0100 |
|---|---|---|
| committer | Kudlaty <none@none> | 2009-12-14 20:47:43 +0100 |
| commit | 379cbb72af7869950e04d59b9903ab0dd2618a68 (patch) | |
| tree | b2d2f724d74e2ed605f685b2c8317118d0fb8f9e /sql/characters.sql | |
| parent | 45d74f8e05b0442a08713c12287f6becda34f892 (diff) | |
Mangos merge: [8874] Extract player skills from data blob. #526
Converted by Azazel.
--HG--
branch : trunk
Diffstat (limited to 'sql/characters.sql')
| -rw-r--r-- | sql/characters.sql | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/sql/characters.sql b/sql/characters.sql index 80b164ba143..e138dafb6fe 100644 --- a/sql/characters.sql +++ b/sql/characters.sql @@ -820,6 +820,28 @@ LOCK TABLES `character_reputation` WRITE; UNLOCK TABLES; -- +-- Table structure for table `character_skills` +-- + +DROP TABLE IF EXISTS `character_skills`; +CREATE TABLE `character_skills` ( + `guid` int(11) unsigned NOT NULL COMMENT 'Global Unique Identifier', + `skill` mediumint(9) unsigned NOT NULL, + `value` mediumint(9) unsigned NOT NULL, + `max` mediumint(9) unsigned NOT NULL, + PRIMARY KEY (`guid`,`skill`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='Player System'; + +-- +-- Dumping data for table `character_skills` +-- + +LOCK TABLES `character_skills` WRITE; +/*!40000 ALTER TABLE `character_skills` DISABLE KEYS */; +/*!40000 ALTER TABLE `character_skills` ENABLE KEYS */; +UNLOCK TABLES; + +-- -- Table structure for table `character_social` -- |
