Fix typo in CREATE TABLE query within ChatLogQueries to ensure table creation works correctly.

This commit is contained in:
akastijn 2026-07-19 23:12:36 +02:00
parent 7492dfa418
commit 2962a605ea

View File

@ -16,7 +16,7 @@ public class ChatLogQueries {
protected static void createChatLogTable() { protected static void createChatLogTable() {
String nicknamesTableQuery = """ String nicknamesTableQuery = """
CREATE TABLE IF NOT EXISTSq:Q chat_log ( CREATE TABLE IF NOT EXISTS chat_log (
id BIGINT AUTO_INCREMENT PRIMARY KEY, id BIGINT AUTO_INCREMENT PRIMARY KEY,
uuid CHAR(36) NOT NULL, uuid CHAR(36) NOT NULL,
time_stamp TIMESTAMP(6) NOT NULL, time_stamp TIMESTAMP(6) NOT NULL,