Skip to content

Commit

Permalink
Merge pull request #201 from Qwerty1Verified/Development
Browse files Browse the repository at this point in the history
Fix SQL syntax error with AUTO_INCREMENT
  • Loading branch information
GhzGarage committed Oct 8, 2023
2 parents 3624c89 + 2c80f37 commit 9e756a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qb-clothing.sql
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ CREATE TABLE IF NOT EXISTS `playerskins` (
PRIMARY KEY (`id`),
KEY `citizenid` (`citizenid`),
KEY `active` (`active`)
) ENGINE=InnoDB AUTO_INCREMENT DEFAULT CHARSET=latin1;
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;

CREATE TABLE IF NOT EXISTS `player_outfits` (
`id` int(11) NOT NULL AUTO_INCREMENT,
Expand All @@ -19,4 +19,4 @@ CREATE TABLE IF NOT EXISTS `player_outfits` (
PRIMARY KEY (`id`),
KEY `citizenid` (`citizenid`),
KEY `outfitId` (`outfitId`)
) ENGINE=InnoDB AUTO_INCREMENT DEFAULT CHARSET=utf8mb4;
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;

0 comments on commit 9e756a8

Please sign in to comment.