updated gitignore to include modules
This commit is contained in:
@@ -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;
|
||||
@@ -0,0 +1,4 @@
|
||||
DELETE FROM dungeonrespawn_playerinfo;
|
||||
|
||||
ALTER TABLE dungeonrespawn_playerinfo
|
||||
MODIFY guid BIGINT(20) NOT NULL AUTO_INCREMENT PRIMARY KEY;
|
||||
Reference in New Issue
Block a user