1
Fork 0
mirror of https://bitbucket.org/Ioncannon/project-meteor-server.git synced 2025-04-20 11:47:48 +00:00
project-meteor-server/sql/characters.sql

52 lines
2 KiB
MySQL
Raw Normal View History

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
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',
`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',
`currentActiveLinkshell` varchar(32) NOT NULL DEFAULT '',
`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`)
) ENGINE=InnoDB AUTO_INCREMENT=166 DEFAULT CHARSET=utf8;