From ab396beb56b74bc18922055d89230f0b3b19312b Mon Sep 17 00:00:00 2001 From: click Date: Thu, 22 Apr 2010 16:22:39 +0200 Subject: Add support for season-dependant gameevents Patch by Liberate --HG-- branch : trunk --- sql/world.sql | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'sql/world.sql') diff --git a/sql/world.sql b/sql/world.sql index ea0074b0fcf..1129e9596e4 100644 --- a/sql/world.sql +++ b/sql/world.sql @@ -4641,6 +4641,30 @@ LOCK TABLES `script_waypoint` WRITE; /*!40000 ALTER TABLE `script_waypoint` ENABLE KEYS */; UNLOCK TABLES; +-- +-- Table structure for table `season_linked_event` +-- + +DROP TABLE IF EXISTS `season_linked_event`; +/*!40101 SET @saved_cs_client = @@character_set_client */; +/*!40101 SET character_set_client = utf8 */; +CREATE TABLE `season_linked_event` ( + `season` int(3) UNSIGNED NOT NULL default '0', + `event` int(8) UNSIGNED NOT NULL default '0', + PRIMARY KEY (`season`), + UNIQUE (`season`,`event`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; +/*!40101 SET character_set_client = @saved_cs_client */; + +-- +-- Dumping data for table `season_linked_event` +-- + +LOCK TABLES `season_linked_event` WRITE; +/*!40000 ALTER TABLE `season_linked_event` DISABLE KEYS */; +/*!40000 ALTER TABLE `season_linked_event` ENABLE KEYS */; +UNLOCK TABLES; + -- -- Table structure for table `skill_discovery_template` -- -- cgit v1.2.3