impress-2020/scripts/db/public-data-constants.sql

197 lines
72 KiB
MySQL
Raw Normal View History

-- MariaDB dump 10.19 Distrib 10.6.16-MariaDB, for debian-linux-gnu (x86_64)
2020-09-18 05:24:03 -07:00
--
-- Host: legacy.impress.openneo.net Database: openneo_impress
2020-09-18 05:24:03 -07:00
-- ------------------------------------------------------
-- Server version 5.5.62-0ubuntu0.14.04.1-log
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
2020-09-18 05:24:03 -07:00
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `species`
--
DROP TABLE IF EXISTS `species`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
2020-09-18 05:24:03 -07:00
CREATE TABLE `species` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
2020-09-18 05:24:03 -07:00
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=56 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `species`
--
LOCK TABLES `species` WRITE;
/*!40000 ALTER TABLE `species` DISABLE KEYS */;
INSERT INTO `species` VALUES (1,'acara'),(2,'aisha'),(3,'blumaroo'),(4,'bori'),(5,'bruce'),(6,'buzz'),(7,'chia'),(8,'chomby'),(9,'cybunny'),(10,'draik'),(11,'elephante'),(12,'eyrie'),(13,'flotsam'),(14,'gelert'),(15,'gnorbu'),(16,'grarrl'),(17,'grundo'),(18,'hissi'),(19,'ixi'),(20,'jetsam'),(21,'jubjub'),(22,'kacheek'),(23,'kau'),(24,'kiko'),(25,'koi'),(26,'korbat'),(27,'kougra'),(28,'krawk'),(29,'kyrii'),(30,'lenny'),(31,'lupe'),(32,'lutari'),(33,'meerca'),(34,'moehog'),(35,'mynci'),(36,'nimmo'),(37,'ogrin'),(38,'peophin'),(39,'poogle'),(40,'pteri'),(41,'quiggle'),(42,'ruki'),(43,'scorchio'),(44,'shoyru'),(45,'skeith'),(46,'techo'),(47,'tonu'),(48,'tuskaninny'),(49,'uni'),(50,'usul'),(51,'wocky'),(52,'xweetok'),(53,'yurble'),(54,'zafara'),(55,'vandagyre');
2020-09-18 05:24:03 -07:00
/*!40000 ALTER TABLE `species` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `species_translations`
--
DROP TABLE IF EXISTS `species_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
2020-09-18 05:24:03 -07:00
CREATE TABLE `species_translations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`species_id` int(11) DEFAULT NULL,
`locale` varchar(255) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_species_translations_on_species_id` (`species_id`),
KEY `index_species_translations_on_locale` (`locale`)
) ENGINE=InnoDB AUTO_INCREMENT=221 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `species_translations`
--
LOCK TABLES `species_translations` WRITE;
/*!40000 ALTER TABLE `species_translations` DISABLE KEYS */;
INSERT INTO `species_translations` VALUES (1,1,'en','acara','2013-01-27 06:10:44','2013-01-27 06:10:44'),(2,2,'en','aisha','2013-01-27 06:10:44','2013-01-27 06:10:44'),(3,3,'en','blumaroo','2013-01-27 06:10:44','2013-01-27 06:10:44'),(4,4,'en','bori','2013-01-27 06:10:44','2013-01-27 06:10:44'),(5,5,'en','bruce','2013-01-27 06:10:44','2013-01-27 06:10:44'),(6,6,'en','buzz','2013-01-27 06:10:44','2013-01-27 06:10:44'),(7,7,'en','chia','2013-01-27 06:10:44','2013-01-27 06:10:44'),(8,8,'en','chomby','2013-01-27 06:10:44','2013-01-27 06:10:44'),(9,9,'en','cybunny','2013-01-27 06:10:44','2013-01-27 06:10:44'),(10,10,'en','draik','2013-01-27 06:10:44','2013-01-27 06:10:44'),(11,11,'en','elephante','2013-01-27 06:10:44','2013-01-27 06:10:44'),(12,12,'en','eyrie','2013-01-27 06:10:44','2013-01-27 06:10:44'),(13,13,'en','flotsam','2013-01-27 06:10:44','2013-01-27 06:10:44'),(14,14,'en','gelert','2013-01-27 06:10:44','2013-01-27 06:10:44'),(15,15,'en','gnorbu','2013-01-27 06:10:44','2013-01-27 06:10:44'),(16,16,'en','grarrl','2013-01-27 06:10:44','2013-01-27 06:10:44'),(17,17,'en','grundo','2013-01-27 06:10:44','2013-01-27 06:10:44'),(18,18,'en','hissi','2013-01-27 06:10:44','2013-01-27 06:10:44'),(19,19,'en','ixi','2013-01-27 06:10:44','2013-01-27 06:10:44'),(20,20,'en','jetsam','2013-01-27 06:10:44','2013-01-27 06:10:44'),(21,21,'en','jubjub','2013-01-27 06:10:44','2013-01-27 06:10:44'),(22,22,'en','kacheek','2013-01-27 06:10:44','2013-01-27 06:10:44'),(23,23,'en','kau','2013-01-27 06:10:44','2013-01-27 06:10:44'),(24,24,'en','kiko','2013-01-27 06:10:44','2013-01-27 06:10:44'),(25,25,'en','koi','2013-01-27 06:10:44','2013-01-27 06:10:44'),(26,26,'en','korbat','2013-01-27 06:10:44','2013-01-27 06:10:44'),(27,27,'en','kougra','2013-01-27 06:10:44','2013-01-27 06:10:44'),(28,28,'en','krawk','2013-01-27 06:10:44','2013-01-27 06:10:44'),(29,29,'en','kyrii','2013-01-27 06:10:44','2013-01-27 06:10:44'),(30,30,'en','lenny','2013-01-27 06:10:44','2013-01-27 06:10:44'),(31,31,'en','lupe','2013-01-27 06:10:44','2013-01-27 06:10:44'),(32,32,'en','lutari','2013-01-27 06:10:44','2013-01-27 06:10:44'),(33,33,'en','meerca','2013-01-27 06:10:44','2013-01-27 06:10:44'),(34,34,'en','moehog','2013-01-27 06:10:44','2013-01-27 06:10:44'),(35,35,'en','mynci','2013-01-27 06:10:44','2013-01-27 06:10:44'),(36,36,'en','nimmo','2013-01-27 06:10:44','2013-01-27 06:10:44'),(37,37,'en','ogrin','2013-01-27 06:10:44','2013-01-27 06:10:44'),(38,38,'en','peophin','2013-01-27 06:10:44','2013-01-27 06:10:44'),(39,39,'en','poogle','2013-01-27 06:10:44','2013-01-27 06:10:44'),(40,40,'en','pteri','2013-01-27 06:10:44','2013-01-27 06:10:44'),(41,41,'en','quiggle','2013-01-27 06:10:44','2013-01-27 06:10:44'),(42,42,'en','ruki','2013-01-27 06:10:44','2013-01-27 06:10:44'),(43,43,'en','scorchio','2013-01-27 06:10:44','2013-01-27 06:10:44'),(44,44,'en','shoyru','2013-01-27 06:10:44','2013-01-27 06:10:44'),(45,45,'en','skeith','2013-01-27 06:10:44','2013-01-27 06:10:44'),(46,46,'en','techo','2013-01-27 06:10:44','2013-01-27 06:10:44'),(47,47,'en','tonu','2013-01-27 06:10:44','2013-01-27 06:10:44'),(48,48,'en','tuskaninny','2013-01-27 06:10:44','2013-01-27 06:10:44'),(49,49,'en','uni','2013-01-27 06:10:44','2013-01-27 06:10:44'),(50,50,'en','usul','2013-01-27 06:10:44','2013-01-27 06:10:44'),(51,51,'en','wocky','2013-01-27 06:10:44','2013-01-27 06:10:44'),(52,52,'en','xweetok','2013-01-27 06:10:44','2013-01-27 06:10:44'),(53,53,'en','yurble','2013-01-27 06:10:44','2013-01-27 06:10:44'),(54,54,'en','zafara','2013-01-27 06:10:44','2013-01-27 06:10:44'),(55,1,'pt','acara','2013-01-27 06:11:49','2013-01-27 06:11:49'),(56,2,'pt','aisha','2013-01-27 06:11:49','2013-01-27 06:11:49'),(57,3,'pt','blumaroo','2013-01-27 06:11:49','2013-01-27 06:11:49'),(58,4,'pt','bori','2013-01-27 06:11:49','2013-01-27 06:11:49'),(59,5,'pt','bruce','2013-01-27 06:11:49','2013-01-27 06:11:49'),(60,6,'pt','buzz','2013-01-27 06:11:49','2013-01-27 06:11:49'),(61,7,'pt','chia','2013-01-27 06:11:49','2013-01-27 06:11:49'),(62,8,'pt','chomby','2013-01-27 06:11:49','2013-01-27 06:11:49'),(63,9,'pt','cybunny'
/*!40000 ALTER TABLE `species_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `colors`
--
DROP TABLE IF EXISTS `colors`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
2020-09-18 05:24:03 -07:00
CREATE TABLE `colors` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`basic` tinyint(1) DEFAULT NULL,
`standard` tinyint(1) DEFAULT NULL,
`prank` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(255) NOT NULL,
2020-09-18 05:24:03 -07:00
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=118 DEFAULT CHARSET=latin1;
2020-09-18 05:24:03 -07:00
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `colors`
--
LOCK TABLES `colors` WRITE;
/*!40000 ALTER TABLE `colors` DISABLE KEYS */;
INSERT INTO `colors` VALUES (-1,0,1,1,'nebula'),(1,0,1,0,'alien'),(2,0,0,0,'apple'),(3,0,0,0,'asparagus'),(4,0,0,0,'aubergine'),(5,0,0,0,'avocado'),(6,0,0,0,'baby'),(7,0,1,0,'biscuit'),(8,1,1,0,'blue'),(9,0,0,0,'blueberry'),(10,0,1,0,'brown'),(11,0,1,0,'camouflage'),(12,0,0,0,'carrot'),(13,0,1,0,'checkered'),(14,0,1,0,'chocolate'),(15,0,0,0,'chokato'),(16,0,1,0,'christmas'),(17,0,1,0,'clay'),(18,0,1,0,'cloud'),(19,0,1,0,'coconut'),(20,0,1,0,'custard'),(21,0,1,0,'darigan'),(22,0,1,0,'desert'),(23,0,1,0,'disco'),(24,0,0,0,'durian'),(25,0,1,0,'electric'),(26,0,1,0,'faerie'),(27,0,1,0,'fire'),(28,0,1,0,'garlic'),(29,0,1,0,'ghost'),(30,0,1,0,'glowing'),(31,0,1,0,'gold'),(32,0,0,0,'gooseberry'),(33,0,0,0,'grape'),(34,1,1,0,'green'),(35,0,1,0,'grey'),(36,0,1,0,'halloween'),(37,0,1,0,'ice'),(38,0,1,0,'invisible'),(39,0,1,0,'island'),(40,0,1,0,'jelly'),(41,0,0,0,'lemon'),(42,0,0,0,'lime'),(43,0,1,0,'mallow'),(44,0,0,0,'maraquan'),(45,0,1,0,'msp'),(46,0,0,0,'mutant'),(47,0,0,0,'orange'),(48,0,0,0,'pea'),(49,0,0,0,'peach'),(50,0,0,0,'pear'),(51,0,0,0,'pepper'),(52,0,0,0,'pineapple'),(53,0,1,0,'pink'),(54,0,1,0,'pirate'),(55,0,0,0,'plum'),(56,0,1,0,'plushie'),(57,0,1,0,'purple'),(58,0,1,0,'quigukiboy'),(59,0,1,0,'quigukigirl'),(60,0,1,0,'rainbow'),(61,1,1,0,'red'),(62,0,1,0,'robot'),(63,0,1,0,'royalboy'),(64,0,1,0,'royalgirl'),(65,0,1,0,'shadow'),(66,0,1,0,'silver'),(67,0,1,0,'sketch'),(68,0,1,0,'skunk'),(69,0,1,0,'snot'),(70,0,1,0,'snow'),(71,0,1,0,'speckled'),(72,0,1,0,'split'),(73,0,1,0,'sponge'),(74,0,1,0,'spotted'),(75,0,1,0,'starry'),(76,0,1,0,'strawberry'),(77,0,1,0,'striped'),(78,0,0,0,'thornberry'),(79,0,0,0,'tomato'),(80,0,1,0,'tyrannian'),(81,0,1,0,'usuki boy'),(82,0,1,0,'usuki girl'),(83,0,1,0,'white'),(84,1,1,0,'yellow'),(85,0,1,0,'zombie'),(86,0,0,0,'onion'),(87,0,1,0,'magma'),(88,0,1,0,'relic'),(89,0,1,0,'woodland'),(90,0,1,0,'transparent'),(91,0,1,0,'maractite'),(92,0,0,0,'8-bit'),(93,0,1,0,'swamp gas'),(94,0,1,0,'water'),(95,0,1,0,'wraith'),(96,0,1,0,'eventide'),(97,0,1,0,'elderlyboy'),(98,0,1,0,'elderlygirl'),(99,0,1,0,'stealthy'),(100,0,1,0,'dimensional'),(101,0,0,0,'agueena'),(102,0,1,0,'pastel'),(103,0,1,0,'ummagine'),(104,0,1,0,'Polka Dot'),(105,0,1,0,'Candy'),(106,0,1,0,'marble'),(107,NULL,1,0,'Steampunk'),(108,0,1,0,'Toy'),(109,0,0,0,'Origami'),(110,0,1,0,'Oil Paint'),(111,0,1,0,'Mosaic'),(112,0,1,0,'Burlap'),(114,0,1,0,'Juppie Swirl'),(115,0,1,0,'Valentine'),(116,0,1,0,'Sroom'),(117,0,1,0,'potato');
2020-09-18 05:24:03 -07:00
/*!40000 ALTER TABLE `colors` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `color_translations`
--
DROP TABLE IF EXISTS `color_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
2020-09-18 05:24:03 -07:00
CREATE TABLE `color_translations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`color_id` int(11) DEFAULT NULL,
`locale` varchar(255) DEFAULT NULL,
`name` varchar(255) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_color_translations_on_color_id` (`color_id`),
KEY `index_color_translations_on_locale` (`locale`)
) ENGINE=InnoDB AUTO_INCREMENT=433 DEFAULT CHARSET=latin1;
2020-09-18 05:24:03 -07:00
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `color_translations`
--
LOCK TABLES `color_translations` WRITE;
/*!40000 ALTER TABLE `color_translations` DISABLE KEYS */;
INSERT INTO `color_translations` VALUES (1,1,'en','alien','2013-01-27 06:10:44','2013-01-27 06:10:44'),(2,2,'en','apple','2013-01-27 06:10:44','2013-01-27 06:10:44'),(3,3,'en','asparagus','2013-01-27 06:10:44','2013-01-27 06:10:44'),(4,4,'en','aubergine','2013-01-27 06:10:44','2013-01-27 06:10:44'),(5,5,'en','avocado','2013-01-27 06:10:44','2013-01-27 06:10:44'),(6,6,'en','baby','2013-01-27 06:10:44','2013-01-27 06:10:44'),(7,7,'en','biscuit','2013-01-27 06:10:44','2013-01-27 06:10:44'),(8,8,'en','blue','2013-01-27 06:10:44','2013-01-27 06:10:44'),(9,9,'en','blueberry','2013-01-27 06:10:44','2013-01-27 06:10:44'),(10,10,'en','brown','2013-01-27 06:10:44','2013-01-27 06:10:44'),(11,11,'en','camouflage','2013-01-27 06:10:44','2013-01-27 06:10:44'),(12,12,'en','carrot','2013-01-27 06:10:44','2013-01-27 06:10:44'),(13,13,'en','checkered','2013-01-27 06:10:44','2013-01-27 06:10:44'),(14,14,'en','chocolate','2013-01-27 06:10:44','2013-01-27 06:10:44'),(15,15,'en','chokato','2013-01-27 06:10:44','2013-01-27 06:10:44'),(16,16,'en','christmas','2013-01-27 06:10:44','2013-01-27 06:10:44'),(17,17,'en','clay','2013-01-27 06:10:44','2013-01-27 06:10:44'),(18,18,'en','cloud','2013-01-27 06:10:44','2013-01-27 06:10:44'),(19,19,'en','coconut','2013-01-27 06:10:44','2013-01-27 06:10:44'),(20,20,'en','custard','2013-01-27 06:10:44','2013-01-27 06:10:44'),(21,21,'en','darigan','2013-01-27 06:10:44','2013-01-27 06:10:44'),(22,22,'en','desert','2013-01-27 06:10:44','2013-01-27 06:10:44'),(23,23,'en','disco','2013-01-27 06:10:44','2013-01-27 06:10:44'),(24,24,'en','durian','2013-01-27 06:10:44','2013-01-27 06:10:44'),(25,25,'en','electric','2013-01-27 06:10:44','2013-01-27 06:10:44'),(26,26,'en','faerie','2013-01-27 06:10:44','2013-01-27 06:10:44'),(27,27,'en','fire','2013-01-27 06:10:44','2013-01-27 06:10:44'),(28,28,'en','garlic','2013-01-27 06:10:44','2013-01-27 06:10:44'),(29,29,'en','ghost','2013-01-27 06:10:44','2013-01-27 06:10:44'),(30,30,'en','glowing','2013-01-27 06:10:44','2013-01-27 06:10:44'),(31,31,'en','gold','2013-01-27 06:10:44','2013-01-27 06:10:44'),(32,32,'en','gooseberry','2013-01-27 06:10:44','2013-01-27 06:10:44'),(33,33,'en','grape','2013-01-27 06:10:44','2013-01-27 06:10:44'),(34,34,'en','green','2013-01-27 06:10:44','2013-01-27 06:10:44'),(35,35,'en','grey','2013-01-27 06:10:44','2013-01-27 06:10:44'),(36,36,'en','halloween','2013-01-27 06:10:44','2013-01-27 06:10:44'),(37,37,'en','ice','2013-01-27 06:10:44','2013-01-27 06:10:44'),(38,38,'en','invisible','2013-01-27 06:10:44','2013-01-27 06:10:44'),(39,39,'en','island','2013-01-27 06:10:44','2013-01-27 06:10:44'),(40,40,'en','jelly','2013-01-27 06:10:44','2013-01-27 06:10:44'),(41,41,'en','lemon','2013-01-27 06:10:44','2013-01-27 06:10:44'),(42,42,'en','lime','2013-01-27 06:10:44','2013-01-27 06:10:44'),(43,43,'en','mallow','2013-01-27 06:10:44','2013-01-27 06:10:44'),(44,44,'en','maraquan','2013-01-27 06:10:44','2013-01-27 06:10:44'),(45,45,'en','msp','2013-01-27 06:10:45','2013-01-27 06:10:45'),(46,46,'en','mutant','2013-01-27 06:10:45','2013-01-27 06:10:45'),(47,47,'en','orange','2013-01-27 06:10:45','2013-01-27 06:10:45'),(48,48,'en','pea','2013-01-27 06:10:45','2013-01-27 06:10:45'),(49,49,'en','peach','2013-01-27 06:10:45','2013-01-27 06:10:45'),(50,50,'en','pear','2013-01-27 06:10:45','2013-01-27 06:10:45'),(51,51,'en','pepper','2013-01-27 06:10:45','2013-01-27 06:10:45'),(52,52,'en','pineapple','2013-01-27 06:10:45','2013-01-27 06:10:45'),(53,53,'en','pink','2013-01-27 06:10:45','2013-01-27 06:10:45'),(54,54,'en','pirate','2013-01-27 06:10:45','2013-01-27 06:10:45'),(55,55,'en','plum','2013-01-27 06:10:45','2013-01-27 06:10:45'),(56,56,'en','plushie','2013-01-27 06:10:45','2013-01-27 06:10:45'),(57,57,'en','purple','2013-01-27 06:10:45','2013-01-27 06:10:45'),(58,58,'en','quigukiboy','2013-01-27 06:10:45','2013-01-27 06:10:45'),(59,59,'en','quigukigirl','2013-01-27 06:10:45','2013-01-27 06:10:45'),(60,60,'en','rainbow','2013-01-27 06:10:45','2013-01-27 06:10:45'),(61,61,'en','red','2013-01-27 06:10:45','2013-01-27 06:10:45'),(62,62,'en','robot','2013-01-27 0
2020-09-18 05:24:03 -07:00
/*!40000 ALTER TABLE `color_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `zones`
--
DROP TABLE IF EXISTS `zones`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zones` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`depth` int(11) DEFAULT NULL,
`type_id` int(11) DEFAULT NULL,
`label` varchar(255) NOT NULL,
`plain_label` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=53 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `zones`
--
LOCK TABLES `zones` WRITE;
/*!40000 ALTER TABLE `zones` DISABLE KEYS */;
INSERT INTO `zones` VALUES (1,1,4,'Music','music'),(2,2,4,'Sound Effects','soundeffects'),(3,3,3,'Background','background'),(4,6,1,'Biology Effects','biologyeffects'),(5,7,1,'Hind Biology','hindbiology'),(6,8,2,'Markings','markings'),(7,9,1,'Hind Disease','hinddisease'),(8,10,2,'Hind Cover','hindcover'),(9,11,1,'Hind Transient Biology','hindtransientbiology'),(10,12,1,'Hind Drippings','hinddrippings'),(11,13,2,'Backpack','backpack'),(12,14,1,'Wings Transient Biology','wingstransientbiology'),(13,15,2,'Wings','wings'),(14,17,1,'Hair Back','hairback'),(15,18,1,'Body','body'),(16,19,2,'Markings','markings'),(17,20,1,'Body Disease','bodydisease'),(18,21,1,'Feet Transient Biology','feettransientbiology'),(19,22,2,'Shoes','shoes'),(20,23,1,'Lower-body Transient Biology','lowerbodytransientbiology'),(21,24,2,'Trousers','trousers'),(22,25,1,'Upper-body Transient Biology','upperbodytransientbiology'),(23,26,2,'Shirt/Dress','shirtdress'),(24,28,2,'Necklace','necklace'),(25,29,2,'Gloves','gloves'),(26,30,2,'Jacket','jacket'),(27,31,2,'Collar','collar'),(28,32,1,'Body Drippings','bodydrippings'),(29,33,1,'Ruff','ruff'),(30,34,1,'Head','head'),(31,35,2,'Markings','markings'),(32,36,1,'Head Disease','headdisease'),(33,37,1,'Eyes','eyes'),(34,38,1,'Mouth','mouth'),(35,41,2,'Glasses','glasses'),(36,39,2,'Earrings','earrings'),(37,40,1,'Hair Front','hairfront'),(38,42,1,'Head Transient Biology','headtransientbiology'),(39,43,1,'Head Drippings','headdrippings'),(40,44,2,'Hat','hat'),(41,45,2,'Earrings','earrings'),(42,46,2,'Right-hand Item','righthanditem'),(43,47,2,'Left-hand Item','lefthanditem'),(44,49,3,'Higher Foreground Item','higherforegrounditem'),(45,50,3,'Lower Foreground Item','lowerforegrounditem'),(46,48,2,'Static','static'),(47,51,3,'Thought Bubble','thoughtbubble'),(48,4,3,'Background Item','backgrounditem'),(49,5,2,'Right-hand Item','righthanditem'),(50,16,2,'Hat','hat'),(51,27,2,'Belt','belt'),(52,52,3,'Foreground','foreground');
/*!40000 ALTER TABLE `zones` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `zone_translations`
--
DROP TABLE IF EXISTS `zone_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `zone_translations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`zone_id` int(11) DEFAULT NULL,
`locale` varchar(255) DEFAULT NULL,
`label` varchar(255) DEFAULT NULL,
`plain_label` varchar(255) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `index_zone_translations_on_zone_id` (`zone_id`),
KEY `index_zone_translations_on_locale` (`locale`)
) ENGINE=InnoDB AUTO_INCREMENT=209 DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `zone_translations`
--
LOCK TABLES `zone_translations` WRITE;
/*!40000 ALTER TABLE `zone_translations` DISABLE KEYS */;
INSERT INTO `zone_translations` VALUES (1,1,'en','Music','music','2013-01-27 06:10:45','2013-01-27 06:10:45'),(2,2,'en','Sound Effects','soundeffects','2013-01-27 06:10:45','2013-01-27 06:10:45'),(3,3,'en','Background','background','2013-01-27 06:10:45','2013-01-27 06:10:45'),(4,4,'en','Biology Effects','biologyeffects','2013-01-27 06:10:45','2013-01-27 06:10:45'),(5,5,'en','Hind Biology','hindbiology','2013-01-27 06:10:45','2013-01-27 06:10:45'),(6,6,'en','Markings','markings','2013-01-27 06:10:45','2013-01-27 06:10:45'),(7,7,'en','Hind Disease','hinddisease','2013-01-27 06:10:45','2013-01-27 06:10:45'),(8,8,'en','Hind Cover','hindcover','2013-01-27 06:10:45','2013-01-27 06:10:45'),(9,9,'en','Hind Transient Biology','hindtransientbiology','2013-01-27 06:10:45','2013-01-27 06:10:45'),(10,10,'en','Hind Drippings','hinddrippings','2013-01-27 06:10:45','2013-01-27 06:10:45'),(11,11,'en','Backpack','backpack','2013-01-27 06:10:45','2013-01-27 06:10:45'),(12,12,'en','Wings Transient Biology','wingstransientbiology','2013-01-27 06:10:45','2013-01-27 06:10:45'),(13,13,'en','Wings','wings','2013-01-27 06:10:45','2013-01-27 06:10:45'),(14,14,'en','Hair Back','hairback','2013-01-27 06:10:45','2013-01-27 06:10:45'),(15,15,'en','Body','body','2013-01-27 06:10:45','2013-01-27 06:10:45'),(16,16,'en','Markings','markings','2013-01-27 06:10:45','2013-01-27 06:10:45'),(17,17,'en','Body Disease','bodydisease','2013-01-27 06:10:45','2013-01-27 06:10:45'),(18,18,'en','Feet Transient Biology','feettransientbiology','2013-01-27 06:10:45','2013-01-27 06:10:45'),(19,19,'en','Shoes','shoes','2013-01-27 06:10:45','2013-01-27 06:10:45'),(20,20,'en','Lower-body Transient Biology','lowerbodytransientbiology','2013-01-27 06:10:45','2013-01-27 06:10:45'),(21,21,'en','Trousers','trousers','2013-01-27 06:10:45','2013-01-27 06:10:45'),(22,22,'en','Upper-body Transient Biology','upperbodytransientbiology','2013-01-27 06:10:45','2013-01-27 06:10:45'),(23,23,'en','Shirt/Dress','shirtdress','2013-01-27 06:10:45','2013-01-27 06:10:45'),(24,24,'en','Necklace','necklace','2013-01-27 06:10:45','2013-01-27 06:10:45'),(25,25,'en','Gloves','gloves','2013-01-27 06:10:45','2013-01-27 06:10:45'),(26,26,'en','Jacket','jacket','2013-01-27 06:10:45','2013-01-27 06:10:45'),(27,27,'en','Collar','collar','2013-01-27 06:10:45','2013-01-27 06:10:45'),(28,28,'en','Body Drippings','bodydrippings','2013-01-27 06:10:45','2013-01-27 06:10:45'),(29,29,'en','Ruff','ruff','2013-01-27 06:10:45','2013-01-27 06:10:45'),(30,30,'en','Head','head','2013-01-27 06:10:45','2013-01-27 06:10:45'),(31,31,'en','Markings','markings','2013-01-27 06:10:45','2013-01-27 06:10:45'),(32,32,'en','Head Disease','headdisease','2013-01-27 06:10:45','2013-01-27 06:10:45'),(33,33,'en','Eyes','eyes','2013-01-27 06:10:45','2013-01-27 06:10:45'),(34,34,'en','Mouth','mouth','2013-01-27 06:10:45','2013-01-27 06:10:45'),(35,35,'en','Glasses','glasses','2013-01-27 06:10:45','2013-01-27 06:10:45'),(36,36,'en','Earrings','earrings','2013-01-27 06:10:45','2013-01-27 06:10:45'),(37,37,'en','Hair Front','hairfront','2013-01-27 06:10:45','2013-01-27 06:10:45'),(38,38,'en','Head Transient Biology','headtransientbiology','2013-01-27 06:10:45','2013-01-27 06:10:45'),(39,39,'en','Head Drippings','headdrippings','2013-01-27 06:10:45','2013-01-27 06:10:45'),(40,40,'en','Hat','hat','2013-01-27 06:10:45','2013-01-27 06:10:45'),(41,41,'en','Earrings','earrings','2013-01-27 06:10:45','2013-01-27 06:10:45'),(42,42,'en','Right-hand Item','righthanditem','2013-01-27 06:10:45','2014-04-06 04:25:35'),(43,43,'en','Left-hand Item','lefthanditem','2013-01-27 06:10:45','2014-04-06 04:25:35'),(44,44,'en','Higher Foreground Item','higherforegrounditem','2013-01-27 06:10:45','2014-04-06 04:25:35'),(45,45,'en','Lower Foreground Item','lowerforegrounditem','2013-01-27 06:10:45','2014-04-06 04:25:35'),(46,46,'en','Static','static','2013-01-27 06:10:46','2013-01-27 06:10:46'),(47,47,'en','Thought Bubble','thoughtbubble','2013-01-27 06:10:46','2013-01-27 06:10:46'),(48,48,'en','Background Item','backgrounditem','2013-01-27 06:10:46','2014-04-06 04
/*!40000 ALTER TABLE `zone_translations` ENABLE KEYS */;
UNLOCK TABLES;
2020-09-18 05:24:03 -07:00
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2024-02-01 1:53:33