From 8a3b039775cf4763aa80a9619b2e2800051a411d Mon Sep 17 00:00:00 2001 From: M'Dic Date: Tue, 21 Nov 2023 12:12:47 -0500 Subject: [PATCH] sql clean up and fix up --- sql/custom/characters/characters.solocraft.sql | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sql/custom/characters/characters.solocraft.sql b/sql/custom/characters/characters.solocraft.sql index 31ece38f6d4..ccf32003995 100644 --- a/sql/custom/characters/characters.solocraft.sql +++ b/sql/custom/characters/characters.solocraft.sql @@ -1,9 +1,9 @@ DROP TABLE IF EXISTS `custom_solocraft_character_stats`; CREATE TABLE IF NOT EXISTS `custom_solocraft_character_stats` ( - `GUID` int unsigned NOT NULL DEFAULT 0, + `GUID` bigint unsigned NOT NULL, `Difficulty` float NOT NULL, - `GroupSize` int unsigned NOT NULL DEFAULT 0, - `SpellPower` int unsigned NOT NULL DEFAULT 0, + `GroupSize` int NOT NULL, + `SpellPower` int unsigned NOT NULL DEFAULT '0', `Stats` float NOT NULL DEFAULT '100', PRIMARY KEY (`GUID`) ) ENGINE=InnoDB COLLATE='utf8mb4_general_ci';