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

@@ -0,0 +1,8 @@
CREATE TABLE IF NOT EXISTS `dungeonrespawn_playerinfo` (
`guid` bigint(20) unsigned DEFAULT NULL,
`map` int(11) DEFAULT NULL,
`x` float DEFAULT NULL,
`y` float DEFAULT NULL,
`z` float DEFAULT NULL,
`o` float DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

View File

@@ -0,0 +1,4 @@
DELETE FROM dungeonrespawn_playerinfo;
ALTER TABLE dungeonrespawn_playerinfo
MODIFY guid BIGINT(20) NOT NULL AUTO_INCREMENT PRIMARY KEY;