-- MySQL dump 10.13 Distrib 8.0.21, for osx10.15 (x86_64) -- -- Host: impress.openneo.net Database: openneo_impress -- ------------------------------------------------------ -- 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 */; /*!50503 SET NAMES utf8mb4 */; /*!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 `items` -- DROP TABLE IF EXISTS `items`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `items` ( `id` int(11) NOT NULL AUTO_INCREMENT, `zones_restrict` text COLLATE utf8_unicode_ci NOT NULL, `thumbnail_url` mediumtext COLLATE utf8_unicode_ci NOT NULL, `category` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `type` varchar(50) COLLATE utf8_unicode_ci DEFAULT NULL, `rarity_index` smallint(6) DEFAULT NULL, `price` mediumint(9) NOT NULL, `weight_lbs` smallint(6) DEFAULT NULL, `species_support_ids` mediumtext COLLATE utf8_unicode_ci, `sold_in_mall` tinyint(1) NOT NULL DEFAULT '0', `last_spidered` datetime DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, `explicitly_body_specific` tinyint(1) NOT NULL DEFAULT '0', `manual_special_color_id` int(11) DEFAULT NULL, `modeling_status_hint` enum('done','glitchy') COLLATE utf8_unicode_ci DEFAULT NULL, PRIMARY KEY (`id`), KEY `objects_last_spidered` (`last_spidered`) ) ENGINE=InnoDB AUTO_INCREMENT=81718 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Table structure for table `item_translations` -- DROP TABLE IF EXISTS `item_translations`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!50503 SET character_set_client = utf8mb4 */; CREATE TABLE `item_translations` ( `id` int(11) NOT NULL AUTO_INCREMENT, `item_id` int(11) DEFAULT NULL, `locale` varchar(255) DEFAULT NULL, `name` varchar(255) DEFAULT NULL, `description` text, `rarity` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, PRIMARY KEY (`id`), KEY `index_item_translations_on_item_id` (`item_id`), KEY `index_item_translations_on_locale` (`locale`), KEY `index_item_translations_name` (`name`), KEY `index_item_translations_on_item_id_and_locale` (`item_id`,`locale`) ) ENGINE=InnoDB AUTO_INCREMENT=215758 DEFAULT CHARSET=latin1; /*!40101 SET character_set_client = @saved_cs_client */; /*!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 2020-09-18 6:27:15