From 2962a605ea51db03226b97187d761d0653271319 Mon Sep 17 00:00:00 2001 From: akastijn Date: Sun, 19 Jul 2026 23:12:36 +0200 Subject: [PATCH] Fix typo in `CREATE TABLE` query within `ChatLogQueries` to ensure table creation works correctly. --- api/src/main/java/com/alttd/chat/database/ChatLogQueries.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/main/java/com/alttd/chat/database/ChatLogQueries.java b/api/src/main/java/com/alttd/chat/database/ChatLogQueries.java index b056834..3185e48 100644 --- a/api/src/main/java/com/alttd/chat/database/ChatLogQueries.java +++ b/api/src/main/java/com/alttd/chat/database/ChatLogQueries.java @@ -16,7 +16,7 @@ public class ChatLogQueries { protected static void createChatLogTable() { String nicknamesTableQuery = """ - CREATE TABLE IF NOT EXISTSq:Q chat_log ( + CREATE TABLE IF NOT EXISTS chat_log ( id BIGINT AUTO_INCREMENT PRIMARY KEY, uuid CHAR(36) NOT NULL, time_stamp TIMESTAMP(6) NOT NULL,