From c04680ea380cee52520f73311d11b571da9fbbbf Mon Sep 17 00:00:00 2001 From: dude22072 Date: Sun, 4 Dec 2016 03:02:15 +0000 Subject: [PATCH 1/2] characters.sql AUTO_INCREMENT --- sql/characters.sql | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/sql/characters.sql b/sql/characters.sql index 2f00e24f..99cf90ba 100644 --- a/sql/characters.sql +++ b/sql/characters.sql @@ -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; \ No newline at end of file +) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; \ No newline at end of file From 7e535a9398a3ca0e1821e2a42d25a80d8c889b38 Mon Sep 17 00:00:00 2001 From: dude22072 Date: Sun, 4 Dec 2016 03:06:04 +0000 Subject: [PATCH 2/2] users.sql AUTO_INCREMENT --- sql/users.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sql/users.sql b/sql/users.sql index 35266275..73b58438 100644 --- a/sql/users.sql +++ b/sql/users.sql @@ -30,7 +30,7 @@ CREATE TABLE `users` ( `email` varchar(256) NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `name_UNIQUE` (`name`) -) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8; +) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; --