mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-27 22:57:45 +00:00
fix db schema so characters get created correctly
This commit is contained in:
parent
703049e14f
commit
795c8280d5
1 changed files with 2 additions and 2 deletions
|
@ -212,7 +212,7 @@ CREATE TABLE `charaitemgearset` (
|
|||
`CharacterId` int(20) NOT NULL,
|
||||
`storageId` int(10) NOT NULL,
|
||||
`type` int(5) DEFAULT '0',
|
||||
`idx` int(5) NOT NULL,
|
||||
`idx` int(5) DEFAULT '0',
|
||||
`container_0` int(20) DEFAULT '0',
|
||||
`container_1` int(20) DEFAULT '0',
|
||||
`container_2` int(20) DEFAULT '0',
|
||||
|
@ -235,7 +235,7 @@ CREATE TABLE `charaiteminventory` (
|
|||
`CharacterId` int(20) NOT NULL,
|
||||
`storageId` int(10) NOT NULL,
|
||||
`type` int(5) DEFAULT '0',
|
||||
`idx` int(5) NOT NULL,
|
||||
`idx` int(5) DEFAULT '0',
|
||||
`container_0` int(20) DEFAULT '0',
|
||||
`container_1` int(20) DEFAULT '0',
|
||||
`container_2` int(20) DEFAULT '0',
|
||||
|
|
Loading…
Add table
Reference in a new issue