updated gitignore to include modules

This commit is contained in:
mikx
2023-11-07 18:17:57 -05:00
parent 749adf47ca
commit bde1978585
429 changed files with 104850 additions and 6 deletions

View File

View File

View File

@@ -0,0 +1,8 @@
CREATE TABLE IF NOT EXISTS `custom_solocraft_character_stats` (
`GUID` bigint unsigned NOT NULL,
`Difficulty` float NOT NULL,
`GroupSize` int NOT NULL,
`SpellPower` int unsigned NOT NULL DEFAULT '0',
`Stats` float NOT NULL DEFAULT '100',
PRIMARY KEY (`GUID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_bin;