Skip to content

Commit

Permalink
Merge pull request #125 from acidmanifesto/solocraft-patch
Browse files Browse the repository at this point in the history
update (3.3.5-solocraft): sql clean up and fix up
  • Loading branch information
jackpoz authored Nov 21, 2023
2 parents 1bd3ba2 + 8a3b039 commit 992528d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sql/custom/characters/characters.solocraft.sql
Original file line number Diff line number Diff line change
@@ -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';

0 comments on commit 992528d

Please sign in to comment.