From 409c39e19a5fe83673254f2a0bf0eb5f06b96f8d Mon Sep 17 00:00:00 2001 From: Up Date: Tue, 7 May 2024 23:03:09 +0200 Subject: [PATCH] fix typo --- db/db.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/db.go b/db/db.go index 74b8a95..049ded2 100644 --- a/db/db.go +++ b/db/db.go @@ -43,7 +43,7 @@ func Init(username, password, protocol, address, database string) error { panic(err) } tx.Exec("CREATE TABLE IF NOT EXISTS systemSaveData (uuid BINARY(16) PRIMARY KEY, data BLOB, timestamp TIMESTAMP)") - tx.Exec("CREATE TABLE IF NOT EXISTS sessionSaveData (uuid BINARY(16), slot TINYINT, data BLOB, timestamp TIMESTAMP PRIMARY KEY (uuid, slot))") + tx.Exec("CREATE TABLE IF NOT EXISTS sessionSaveData (uuid BINARY(16), slot TINYINT, data BLOB, timestamp TIMESTAMP, PRIMARY KEY (uuid, slot))") err = tx.Commit() if err != nil { panic(err)