Files
mod-guildhouse/data/sql/db-characters/2024_04_07_guildhouse.sql
Walter Pagani 1ded5dc7b5 chore. Compatibility with the latest version (#46)
* chore. Compatibility with the latest version

* add pull request
2024-04-07 18:27:20 -03:00

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;