mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
Forgot linkshell sql file.
This commit is contained in:
parent
248ea0cce1
commit
91820dc933
@ -1,52 +1,19 @@
|
|||||||
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
|
/*
|
||||||
--
|
MySQL Data Transfer
|
||||||
-- Host: localhost Database: ffxiv_database
|
Source Host: localhost
|
||||||
-- ------------------------------------------------------
|
Source Database: ffxiv_server
|
||||||
-- Server version 5.7.10-log
|
Target Host: localhost
|
||||||
|
Target Database: ffxiv_server
|
||||||
|
Date: 4/2/2017 3:12:27 PM
|
||||||
|
*/
|
||||||
|
|
||||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
SET FOREIGN_KEY_CHECKS=0;
|
||||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
-- ----------------------------
|
||||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
-- Table structure for characters_linkshells
|
||||||
/*!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 `characters_linkshells`
|
|
||||||
--
|
|
||||||
|
|
||||||
DROP TABLE IF EXISTS `characters_linkshells`;
|
|
||||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
|
||||||
/*!40101 SET character_set_client = utf8 */;
|
|
||||||
CREATE TABLE `characters_linkshells` (
|
CREATE TABLE `characters_linkshells` (
|
||||||
`id` int(10) unsigned zerofill NOT NULL AUTO_INCREMENT,
|
|
||||||
`characterId` int(10) unsigned NOT NULL,
|
`characterId` int(10) unsigned NOT NULL,
|
||||||
`slot` int(10) unsigned NOT NULL,
|
`linkshellId` bigint(20) unsigned NOT NULL,
|
||||||
`linkshellId` int(10) unsigned NOT NULL,
|
`rank` tinyint(3) unsigned NOT NULL DEFAULT '4',
|
||||||
PRIMARY KEY (`id`)
|
PRIMARY KEY (`characterId`,`linkshellId`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
|
||||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
|
||||||
|
|
||||||
--
|
|
||||||
-- Dumping data for table `characters_linkshells`
|
|
||||||
--
|
|
||||||
|
|
||||||
LOCK TABLES `characters_linkshells` WRITE;
|
|
||||||
/*!40000 ALTER TABLE `characters_linkshells` DISABLE KEYS */;
|
|
||||||
/*!40000 ALTER TABLE `characters_linkshells` ENABLE KEYS */;
|
|
||||||
UNLOCK TABLES;
|
|
||||||
/*!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 2016-06-07 22:54:46
|
|
||||||
|
Loading…
Reference in New Issue
Block a user