diff --git a/sql/characters.sql b/sql/characters.sql index 49932421..2f2f35bd 100644 --- a/sql/characters.sql +++ b/sql/characters.sql @@ -46,4 +46,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 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 */; --