Skip to content

Instantly share code, notes, and snippets.

@rcreasey
Created December 23, 2015 23:50
Show Gist options
  • Save rcreasey/9f88242abf353150fbc7 to your computer and use it in GitHub Desktop.
Save rcreasey/9f88242abf353150fbc7 to your computer and use it in GitHub Desktop.
This file has been truncated, but you can view the full file.
-- MySQL dump 10.15 Distrib 10.0.21-MariaDB, for Linux (x86_64)
--
-- Host: localhost Database: eve_static
-- ------------------------------------------------------
-- Server version 10.0.21-MariaDB-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 utf8 */;
/*!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 `invTypes`
--
DROP TABLE IF EXISTS `invTypes`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `invTypes` (
`typeID` int(11) NOT NULL,
`groupID` int(11) DEFAULT NULL,
`typeName` varchar(100) DEFAULT NULL,
`description` longtext,
`mass` double DEFAULT NULL,
`volume` double DEFAULT NULL,
`capacity` double DEFAULT NULL,
`portionSize` int(11) DEFAULT NULL,
`raceID` smallint(6) DEFAULT NULL,
`basePrice` decimal(19,4) DEFAULT NULL,
`published` tinyint(1) DEFAULT NULL,
`marketGroupID` bigint(20) DEFAULT NULL,
`iconID` bigint(20) DEFAULT NULL,
`soundID` bigint(20) DEFAULT NULL,
PRIMARY KEY (`typeID`),
KEY `invTypes_groupid` (`groupID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `invTypes`
--
LOCK TABLES `invTypes` WRITE;
/*!40000 ALTER TABLE `invTypes` DISABLE KEYS */;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment