diff --git a/sql/charadetail.sql b/sql/charadetail.sql index 2a47302c..8716365d 100644 --- a/sql/charadetail.sql +++ b/sql/charadetail.sql @@ -72,6 +72,7 @@ CREATE TABLE IF NOT EXISTS `charadetail` ( `GMRank` int(3) DEFAULT '0', `EquipDisplayFlags` int(3) DEFAULT '0', `unlocks` binary(64) DEFAULT NULL, + `Orchestrion` binary(38) DEFAULT NULL, `CharacterId` int(20) NOT NULL DEFAULT '0', `IS_DELETE` int(3) DEFAULT '0', `IS_NOT_ACTIVE_FLG` int(3) DEFAULT '0', diff --git a/sql/update.sql b/sql/update.sql index 67fdb72e..0f05e32a 100644 --- a/sql/update.sql +++ b/sql/update.sql @@ -28,4 +28,5 @@ -- ------------------------------------------- -- update.sql before titles added 09/10/2017 -ALTER TABLE `charadetail` CHANGE `TitleList` `Titlelist` BINARY(48) NULL DEFAULT NULL; \ No newline at end of file +ALTER TABLE `charadetail` CHANGE `TitleList` `Titlelist` BINARY(48) NULL DEFAULT NULL; +ALTER TABLE `charadetail` ADD COLUMN `Orchestrion` BINARY(38) DEFAULT NULL AFTER `unlocks`; \ No newline at end of file