Fix typo in CREATE TABLE query within ChatLogQueries to ensure table creation works correctly.
This commit is contained in:
parent
7492dfa418
commit
2962a605ea
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user