mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-25 22:17:45 +00:00
10 lines
228 B
MySQL
10 lines
228 B
MySQL
![]() |
CREATE TABLE `houseiteminventory` (
|
||
|
`landIdent` BIGINT(20) UNSIGNED NOT NULL,
|
||
|
`containerId` INT(10) UNSIGNED NOT NULL,
|
||
|
`itemId` INT(20) NOT NULL,
|
||
|
INDEX `landIdent` (`landIdent`)
|
||
|
)
|
||
|
COLLATE='latin1_swedish_ci'
|
||
|
ENGINE=InnoDB
|
||
|
;
|