mirror of
https://bitbucket.org/Ioncannon/project-meteor-server.git
synced 2025-04-02 19:42:05 -04:00
characters.sql AUTO_INCREMENT
This commit is contained in:
parent
101070954d
commit
c04680ea38
@ -1,16 +1,16 @@
|
||||
/*
|
||||
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
|
||||
*/
|
||||
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
-- ----------------------------
|
||||
-- Table structure for characters
|
||||
-- ----------------------------
|
||||
/*
|
||||
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
|
||||
*/
|
||||
|
||||
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,
|
||||
@ -45,4 +45,4 @@ CREATE TABLE `characters` (
|
||||
`currentPartyGroupId` bigint(20) unsigned DEFAULT '0',
|
||||
`currentRetainerGroupId` bigint(20) unsigned DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=162 DEFAULT CHARSET=utf8;
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
|
Loading…
Reference in New Issue
Block a user