Removed AUTOINCREMENT attribute of players.id

This commit is contained in:
Obique PSWG
2017-04-04 18:06:42 -05:00
parent adee72e309
commit b7109309fc

View File

@@ -10,7 +10,7 @@ CREATE TABLE IF NOT EXISTS users (
INSERT OR IGNORE INTO users(username, password, email, access_level) VALUES('holocore', 'password', 'holocore@projectswg.com', 'csr');
CREATE TABLE IF NOT EXISTS players (
id INTEGER PRIMARY KEY AUTOINCREMENT,
id INTEGER PRIMARY KEY,
name TEXT NOT NULL,
race TEXT NOT NULL,
userid INTEGER NOT NULL