mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-01 08:27:46 +00:00
update schema
This commit is contained in:
parent
b4e0c2a406
commit
5ed8281f96
1 changed files with 11 additions and 0 deletions
|
@ -563,3 +563,14 @@ CREATE TABLE `zonepositions` (
|
||||||
`radius` int(11) NOT NULL DEFAULT '2',
|
`radius` int(11) NOT NULL DEFAULT '2',
|
||||||
PRIMARY KEY(`id`)
|
PRIMARY KEY(`id`)
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_general_ci;
|
||||||
|
|
||||||
|
CREATE TABLE `landplaceditems` (
|
||||||
|
`ItemId` INT(20) UNSIGNED NOT NULL,
|
||||||
|
`PosX` FLOAT NOT NULL,
|
||||||
|
`PosY` FLOAT NOT NULL,
|
||||||
|
`PosZ` FLOAT NOT NULL,
|
||||||
|
`Rotation` INT(10) NOT NULL,
|
||||||
|
PRIMARY KEY (`ItemId`)
|
||||||
|
)
|
||||||
|
COLLATE='latin1_swedish_ci' ENGINE=InnoDB;
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue