diff options
| author | click <none@none> | 2010-04-22 16:22:39 +0200 |
|---|---|---|
| committer | click <none@none> | 2010-04-22 16:22:39 +0200 |
| commit | ab396beb56b74bc18922055d89230f0b3b19312b (patch) | |
| tree | a7a7313538648fa69f070bde266d7f0cb047ccd7 /sql/world.sql | |
| parent | ca2b52af0d4ca8d2c2d3615bac2db67778af07e7 (diff) | |
Add support for season-dependant gameevents
Patch by Liberate
--HG--
branch : trunk
Diffstat (limited to 'sql/world.sql')
| -rw-r--r-- | sql/world.sql | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/sql/world.sql b/sql/world.sql index ea0074b0fcf..1129e9596e4 100644 --- a/sql/world.sql +++ b/sql/world.sql @@ -4642,6 +4642,30 @@ LOCK TABLES `script_waypoint` WRITE; 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` -- |
