mirror of
https://github.com/araxiaonline/mod-guildhouse.git
synced 2026-06-13 02:52:21 -04:00
12 lines
467 B
SQL
12 lines
467 B
SQL
CREATE TABLE IF NOT EXISTS `guild_house` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`guild` int(11) NOT NULL DEFAULT '0',
|
|
`phase` int(11) NOT NULL,
|
|
`map` int(11) NOT NULL DEFAULT '0',
|
|
`positionX` float NOT NULL DEFAULT '0',
|
|
`positionY` float NOT NULL DEFAULT '0',
|
|
`positionZ` float NOT NULL DEFAULT '0',
|
|
`orientation` float NOT NULL DEFAULT '0',
|
|
PRIMARY KEY (`id`),
|
|
UNIQUE KEY `guild` (`guild`)
|
|
) ENGINE=InnoDB AUTO_INCREMENT=24 DEFAULT CHARSET=utf8; |