mirror of
https://github.com/mangosfour/server.git
synced 2025-12-22 22:37:06 +00:00
[10087] Move table in more expected mangos.sql part
This commit is contained in:
parent
619f01e150
commit
a2a50c11be
2 changed files with 21 additions and 21 deletions
|
|
@ -1648,6 +1648,26 @@ LOCK TABLES `game_event_model_equip` WRITE;
|
||||||
/*!40000 ALTER TABLE `game_event_model_equip` ENABLE KEYS */;
|
/*!40000 ALTER TABLE `game_event_model_equip` ENABLE KEYS */;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Table structure for table `game_event_pool`
|
||||||
|
--
|
||||||
|
|
||||||
|
DROP TABLE IF EXISTS `game_event_pool`;
|
||||||
|
CREATE TABLE `game_event_pool` (
|
||||||
|
`pool_entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Id of the pool',
|
||||||
|
`event` smallint(6) NOT NULL default '0' COMMENT 'Put negatives values to remove during event',
|
||||||
|
PRIMARY KEY (`pool_entry`)
|
||||||
|
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||||
|
|
||||||
|
--
|
||||||
|
-- Dumping data for table `game_event_pool`
|
||||||
|
--
|
||||||
|
|
||||||
|
LOCK TABLES `game_event_pool` WRITE;
|
||||||
|
/*!40000 ALTER TABLE `game_event_pool` DISABLE KEYS */;
|
||||||
|
/*!40000 ALTER TABLE `game_event_pool` ENABLE KEYS */;
|
||||||
|
UNLOCK TABLES;
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `game_graveyard_zone`
|
-- Table structure for table `game_graveyard_zone`
|
||||||
--
|
--
|
||||||
|
|
@ -13705,26 +13725,6 @@ LOCK TABLES `pool_template` WRITE;
|
||||||
/*!40000 ALTER TABLE `pool_template` ENABLE KEYS */;
|
/*!40000 ALTER TABLE `pool_template` ENABLE KEYS */;
|
||||||
UNLOCK TABLES;
|
UNLOCK TABLES;
|
||||||
|
|
||||||
--
|
|
||||||
-- Table structure for table `game_event_pool`
|
|
||||||
--
|
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `game_event_pool`;
|
|
||||||
CREATE TABLE `game_event_pool` (
|
|
||||||
`pool_entry` mediumint(8) unsigned NOT NULL default '0' COMMENT 'Id of the pool',
|
|
||||||
`event` smallint(6) NOT NULL default '0' COMMENT 'Put negatives values to remove during event',
|
|
||||||
PRIMARY KEY (`pool_entry`)
|
|
||||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Dumping data for table `game_event_pool`
|
|
||||||
--
|
|
||||||
|
|
||||||
LOCK TABLES `game_event_pool` WRITE;
|
|
||||||
/*!40000 ALTER TABLE `game_event_pool` DISABLE KEYS */;
|
|
||||||
/*!40000 ALTER TABLE `game_event_pool` ENABLE KEYS */;
|
|
||||||
UNLOCK TABLES;
|
|
||||||
|
|
||||||
--
|
--
|
||||||
-- Table structure for table `prospecting_loot_template`
|
-- Table structure for table `prospecting_loot_template`
|
||||||
--
|
--
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
#ifndef __REVISION_NR_H__
|
#ifndef __REVISION_NR_H__
|
||||||
#define __REVISION_NR_H__
|
#define __REVISION_NR_H__
|
||||||
#define REVISION_NR "10086"
|
#define REVISION_NR "10087"
|
||||||
#endif // __REVISION_NR_H__
|
#endif // __REVISION_NR_H__
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue