Files
TrinityCore/sql/updates/505_world.sql
hunteee 491bc7569b *Add new line to end of sqls.
--HG--
branch : trunk
2009-06-18 20:10:59 +02:00

10 lines
298 B
SQL

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,
PRIMARY KEY (`follower`));