From 2c0bd914a9182e42e2a0608b265b60a4ed47262a Mon Sep 17 00:00:00 2001 From: Solareon <769465+solareon@users.noreply.github.com> Date: Mon, 3 Jun 2024 19:11:34 +0200 Subject: [PATCH] fix(qbox.sql): use correct collation for properties --- qbox.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qbox.sql b/qbox.sql index 33282ea..c519ddb 100644 --- a/qbox.sql +++ b/qbox.sql @@ -318,4 +318,4 @@ CREATE TABLE IF NOT EXISTS `properties` ( `decorations` JSON NOT NULL DEFAULT (JSON_OBJECT()), /* the model name with its corresponding coords that needs to be placed */ FOREIGN KEY (owner) REFERENCES `players` (`citizenid`), PRIMARY KEY (id) -); \ No newline at end of file +) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;