1
Fork 0
mirror of https://github.com/SapphireServer/Sapphire.git synced 2025-05-01 00:27:44 +00:00

Orchestrion SQL

This commit is contained in:
amibu 2017-10-09 20:11:55 +02:00
parent e39258939b
commit 4423bf4908
2 changed files with 3 additions and 1 deletions

View file

@ -72,6 +72,7 @@ CREATE TABLE IF NOT EXISTS `charadetail` (
`GMRank` int(3) DEFAULT '0', `GMRank` int(3) DEFAULT '0',
`EquipDisplayFlags` int(3) DEFAULT '0', `EquipDisplayFlags` int(3) DEFAULT '0',
`unlocks` binary(64) DEFAULT NULL, `unlocks` binary(64) DEFAULT NULL,
`Orchestrion` binary(38) DEFAULT NULL,
`CharacterId` int(20) NOT NULL DEFAULT '0', `CharacterId` int(20) NOT NULL DEFAULT '0',
`IS_DELETE` int(3) DEFAULT '0', `IS_DELETE` int(3) DEFAULT '0',
`IS_NOT_ACTIVE_FLG` int(3) DEFAULT '0', `IS_NOT_ACTIVE_FLG` int(3) DEFAULT '0',

View file

@ -29,3 +29,4 @@
-- update.sql before titles added 09/10/2017 -- update.sql before titles added 09/10/2017
ALTER TABLE `charadetail` CHANGE `TitleList` `Titlelist` BINARY(48) NULL DEFAULT NULL; ALTER TABLE `charadetail` CHANGE `TitleList` `Titlelist` BINARY(48) NULL DEFAULT NULL;
ALTER TABLE `charadetail` ADD COLUMN `Orchestrion` BINARY(38) DEFAULT NULL AFTER `unlocks`;