mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-06-08 21:44:35 +02:00
Pushing sql updates.
This commit is contained in:
parent
3864bf6d85
commit
b1998d5f73
2 changed files with 162 additions and 194 deletions
|
@ -1,78 +1,48 @@
|
|||
-- MySQL dump 10.13 Distrib 5.7.10, for Win64 (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: ffxiv_database
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 5.7.10-log
|
||||
/*
|
||||
MySQL Data Transfer
|
||||
Source Host: localhost
|
||||
Source Database: ffxiv_server
|
||||
Target Host: localhost
|
||||
Target Database: ffxiv_server
|
||||
Date: 12/3/2016 5:39:10 PM
|
||||
*/
|
||||
|
||||
/*!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 `characters`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `characters`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!40101 SET character_set_client = utf8 */;
|
||||
CREATE TABLE `characters` (
|
||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`userId` int(11) unsigned NOT NULL,
|
||||
`slot` smallint(6) unsigned NOT NULL,
|
||||
`serverId` int(11) NOT NULL,
|
||||
`name` varchar(32) NOT NULL,
|
||||
`state` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`creationDate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`isLegacy` smallint(1) unsigned DEFAULT '0',
|
||||
`doRename` smallint(1) unsigned DEFAULT '0',
|
||||
`playTime` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`positionX` float NOT NULL DEFAULT '0',
|
||||
`positionY` float NOT NULL DEFAULT '0',
|
||||
`positionZ` float NOT NULL DEFAULT '0',
|
||||
`rotation` float NOT NULL DEFAULT '0',
|
||||
`actorState` smallint(5) unsigned DEFAULT '0',
|
||||
`currentZoneId` smallint(5) unsigned DEFAULT '0',
|
||||
`guardian` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`birthDay` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`birthMonth` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`initialTown` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`tribe` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
||||
`gcCurrent` tinyint(3) unsigned DEFAULT '0',
|
||||
`gcLimsaRank` tinyint(3) unsigned DEFAULT '127',
|
||||
`gcGridaniaRank` tinyint(3) unsigned DEFAULT '127',
|
||||
`gcUldahRank` tinyint(3) unsigned DEFAULT '127',
|
||||
`currentTitle` int(10) unsigned DEFAULT '0',
|
||||
`currentParty` int(10) unsigned DEFAULT '0',
|
||||
`restBonus` int(10) DEFAULT '0',
|
||||
`achievementPoints` int(10) unsigned DEFAULT '0',
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `characters`
|
||||
--
|
||||
|
||||
LOCK TABLES `characters` WRITE;
|
||||
/*!40000 ALTER TABLE `characters` DISABLE KEYS */;
|
||||
|
||||
/*!40000 ALTER TABLE `characters` 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:43
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
-- ----------------------------
|
||||
-- Table structure for characters
|
||||
-- ----------------------------
|
||||
CREATE TABLE `characters` (
|
||||
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`userId` int(11) unsigned NOT NULL,
|
||||
`slot` smallint(6) unsigned NOT NULL,
|
||||
`serverId` int(11) NOT NULL,
|
||||
`name` varchar(32) NOT NULL,
|
||||
`state` smallint(5) unsigned NOT NULL DEFAULT '0',
|
||||
`creationDate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`isLegacy` smallint(1) unsigned DEFAULT '0',
|
||||
`doRename` smallint(1) unsigned DEFAULT '0',
|
||||
`playTime` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
`positionX` float NOT NULL DEFAULT '0',
|
||||
`positionY` float NOT NULL DEFAULT '0',
|
||||
`positionZ` float NOT NULL DEFAULT '0',
|
||||
`rotation` float NOT NULL DEFAULT '0',
|
||||
`actorState` smallint(5) unsigned DEFAULT '0',
|
||||
`currentZoneId` smallint(5) unsigned DEFAULT '0',
|
||||
`destinationZoneId` smallint(5) unsigned DEFAULT '0',
|
||||
`destinationSpawnType` tinyint(3) unsigned DEFAULT '0',
|
||||
`guardian` tinyint(3) unsigned NOT NULL,
|
||||
`birthDay` tinyint(3) unsigned NOT NULL,
|
||||
`birthMonth` tinyint(3) unsigned NOT NULL,
|
||||
`initialTown` tinyint(3) unsigned NOT NULL,
|
||||
`tribe` tinyint(3) unsigned NOT NULL,
|
||||
`gcCurrent` tinyint(3) unsigned DEFAULT '0',
|
||||
`gcLimsaRank` tinyint(3) unsigned DEFAULT '127',
|
||||
`gcGridaniaRank` tinyint(3) unsigned DEFAULT '127',
|
||||
`gcUldahRank` tinyint(3) unsigned DEFAULT '127',
|
||||
`currentTitle` int(10) unsigned DEFAULT '0',
|
||||
`restBonus` int(10) DEFAULT '0',
|
||||
`achievementPoints` int(10) unsigned DEFAULT '0',
|
||||
`currentPartyGroupId` bigint(20) unsigned DEFAULT '0',
|
||||
`currentRetainerGroupId` bigint(20) unsigned DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=162 DEFAULT CHARSET=utf8;
|
Loading…
Add table
Add a link
Reference in a new issue