Fix schema.sql syntax

This commit is contained in:
Znote 2020-11-13 01:07:35 +00:00
parent 824874e390
commit 8128804021

View File

@ -84,9 +84,9 @@ CREATE TABLE IF NOT EXISTS `znote_players` (
CREATE TABLE IF NOT EXISTS `znote_player_reports` ( CREATE TABLE IF NOT EXISTS `znote_player_reports` (
`id` int NOT NULL AUTO_INCREMENT, `id` int NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL, `name` varchar(50) NOT NULL,
`posx` intNOT NULL, `posx` int NOT NULL,
`posy` intNOT NULL, `posy` int NOT NULL,
`posz` intNOT NULL, `posz` int NOT NULL,
`report_description` VARCHAR(255) NOT NULL, `report_description` VARCHAR(255) NOT NULL,
`date` int NOT NULL, `date` int NOT NULL,
`status` TINYINT(3) NOT NULL DEFAULT '0', `status` TINYINT(3) NOT NULL DEFAULT '0',