Skip to content

Commit

Permalink
[11785] Implement dungeon encounters (DBC part), thanks to rsa for po…
Browse files Browse the repository at this point in the history
…rting it to mangos

Signed-off-by: Laise <fenrisse@gmail.com>
  • Loading branch information
Shauren authored and Laise committed Sep 4, 2011
1 parent 7f607bb commit af5889c
Show file tree
Hide file tree
Showing 18 changed files with 1,457 additions and 20 deletions.
3 changes: 2 additions & 1 deletion sql/characters.sql
Expand Up @@ -21,7 +21,7 @@

DROP TABLE IF EXISTS `character_db_version`;
CREATE TABLE `character_db_version` (
`required_11716_10_characters_mail` bit(1) default NULL
`required_11785_02_characters_instance` bit(1) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8 ROW_FORMAT=FIXED COMMENT='Last applied sql update to DB';

--
Expand Down Expand Up @@ -1420,6 +1420,7 @@ CREATE TABLE `instance` (
`map` int(11) unsigned NOT NULL default '0',
`resettime` bigint(40) unsigned NOT NULL default '0',
`difficulty` tinyint(1) unsigned NOT NULL default '0',
`encountersMask` int(10) unsigned NOT NULL default '0',
`data` longtext,
PRIMARY KEY (`id`),
KEY `map` (`map`),
Expand Down

0 comments on commit af5889c

Please sign in to comment.