l2j_mobius/trunk/dist/tools/sql/classic/random_spawn_loc.sql
2015-05-02 16:41:56 +00:00

10 lines
346 B
SQL

DROP TABLE IF EXISTS `random_spawn_loc`;
CREATE TABLE `random_spawn_loc` (
`groupId` tinyint(3) unsigned NOT NULL,
`x` mediumint(6) NOT NULL,
`y` mediumint(6) NOT NULL,
`z` mediumint(6) NOT NULL,
`heading` mediumint(6) NOT NULL DEFAULT '0',
PRIMARY KEY (`groupId`,`x`,`y`,`z`,`heading`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;