From 81288040217209c1c55d3a3a8f69866b3e8c8ba2 Mon Sep 17 00:00:00 2001 From: Znote Date: Fri, 13 Nov 2020 01:07:35 +0000 Subject: [PATCH] Fix schema.sql syntax --- engine/database/znote_schema.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/engine/database/znote_schema.sql b/engine/database/znote_schema.sql index 3e9d8f1..fce0f4f 100644 --- a/engine/database/znote_schema.sql +++ b/engine/database/znote_schema.sql @@ -84,9 +84,9 @@ CREATE TABLE IF NOT EXISTS `znote_players` ( CREATE TABLE IF NOT EXISTS `znote_player_reports` ( `id` int NOT NULL AUTO_INCREMENT, `name` varchar(50) NOT NULL, - `posx` intNOT NULL, - `posy` intNOT NULL, - `posz` intNOT NULL, + `posx` int NOT NULL, + `posy` int NOT NULL, + `posz` int NOT NULL, `report_description` VARCHAR(255) NOT NULL, `date` int NOT NULL, `status` TINYINT(3) NOT NULL DEFAULT '0',