aboutsummaryrefslogtreecommitdiff
path: root/sql/updates/505_world.sql
blob: 26812d4d3fb0fd7cd4f9799fdf44394963e41f5c (plain)
1
2
3
4
5
6
7
8
9
10
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`));