mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-16 18:40:28 +00:00
First Commit
For Azeroth!
This commit is contained in:
11
sql/structure/CHARACTERS_CHARACTER_ENTRY_POINT.sql
Normal file
11
sql/structure/CHARACTERS_CHARACTER_ENTRY_POINT.sql
Normal file
@@ -0,0 +1,11 @@
|
||||
CREATE TABLE IF NOT EXISTS `character_entry_point` (
|
||||
`guid` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Global Unique Identifier',
|
||||
`joinX` float NOT NULL DEFAULT '0',
|
||||
`joinY` float NOT NULL DEFAULT '0',
|
||||
`joinZ` float NOT NULL DEFAULT '0',
|
||||
`joinO` float NOT NULL DEFAULT '0',
|
||||
`joinMapId` int(10) unsigned NOT NULL DEFAULT '0' COMMENT 'Map Identifier',
|
||||
`taxiPath` text,
|
||||
`mountSpell` int(10) unsigned NOT NULL DEFAULT '0',
|
||||
PRIMARY KEY (`guid`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Player System';
|
||||
Reference in New Issue
Block a user