2016-12-03 17:40:45 -05:00
|
|
|
/*
|
|
|
|
MySQL Data Transfer
|
|
|
|
Source Host: localhost
|
|
|
|
Source Database: ffxiv_server
|
|
|
|
Target Host: localhost
|
|
|
|
Target Database: ffxiv_server
|
2017-05-01 22:30:43 -04:00
|
|
|
Date: 5/1/2017 10:28:15 PM
|
2016-12-03 17:40:45 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
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',
|
2017-03-07 08:32:57 -05:00
|
|
|
`currentPrivateArea` varchar(32) DEFAULT NULL,
|
|
|
|
`currentPrivateAreaType` int(10) unsigned DEFAULT '0',
|
2016-12-03 17:40:45 -05:00
|
|
|
`destinationZoneId` smallint(5) unsigned DEFAULT '0',
|
|
|
|
`destinationSpawnType` tinyint(3) unsigned DEFAULT '0',
|
2017-04-02 12:56:05 -07:00
|
|
|
`guardian` tinyint(3) unsigned DEFAULT '0',
|
|
|
|
`birthDay` tinyint(3) unsigned DEFAULT '0',
|
|
|
|
`birthMonth` tinyint(3) unsigned DEFAULT '0',
|
|
|
|
`initialTown` tinyint(3) unsigned DEFAULT '0',
|
|
|
|
`tribe` tinyint(3) unsigned DEFAULT '0',
|
2016-12-03 17:40:45 -05:00
|
|
|
`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',
|
2017-03-07 08:32:57 -05:00
|
|
|
`currentActiveLinkshell` varchar(32) NOT NULL DEFAULT '',
|
2017-05-01 22:30:43 -04:00
|
|
|
`homepoint` int(10) unsigned NOT NULL DEFAULT '0',
|
|
|
|
`homepointInn` tinyint(3) unsigned NOT NULL DEFAULT '0',
|
2016-12-03 17:40:45 -05:00
|
|
|
PRIMARY KEY (`id`)
|
2019-05-06 14:34:59 -04:00
|
|
|
) ENGINE=InnoDB AUTO_INCREMENT=0 DEFAULT CHARSET=utf8;
|