Files
TCPlayerbotCore/sql/updates/505_world.sql
T

11 lines
299 B
SQL
Raw Normal View History

2008-12-15 00:07:21 +02:00
DROP TABLE IF EXISTS `creature_formations`;
CREATE TABLE `creature_formations` (
`leader` int(11) unsigned NOT NULL,
`follower` int(11) unsigned NOT NULL,
`dist` float unsigned NOT NULL,
`angle` float unsigned NOT NULL,
`groupAI` int(11) unsigned NOT NULL,
2008-12-15 10:42:35 +00:00
PRIMARY KEY (`follower`));
2009-02-17 20:07:49 -06:00