1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-04-27 06:47:45 +00:00
sapphire/sql/housepartsstorage.sql

18 lines
557 B
MySQL
Raw Normal View History

2018-11-16 12:16:08 +01:00
CREATE TABLE `housepartsstorage` (
`LandSetId` INT UNSIGNED NULL,
`HouseId` INT UNSIGNED NULL,
`StorageId` BIGINT,
`Type` INT NULL,
`Index` INT NULL,
`Container_0` INT UNSIGNED DEFAULT '0',
`Container_1` INT UNSIGNED DEFAULT '0',
`Container_2` INT UNSIGNED DEFAULT '0',
`Container_3` INT UNSIGNED DEFAULT '0',
`Container_4` INT UNSIGNED DEFAULT '0',
`Container_5` INT UNSIGNED DEFAULT '0',
`Container_6` INT UNSIGNED DEFAULT '0',
`Container_7` INT UNSIGNED DEFAULT '0',
`UPDATE_DATE` DATETIME NULL
)
COLLATE='latin1_swedish_ci'
ENGINE=InnoDB;