mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-04-29 07:37:45 +00:00
Moved new orchestrion field to update.sql
This commit is contained in:
parent
ca90e8ce6f
commit
bfc550be2b
2 changed files with 5 additions and 3 deletions
|
@ -64,7 +64,6 @@ CREATE TABLE `charainfo` (
|
|||
`HowTo` binary(33) DEFAULT NULL,
|
||||
`Minions` binary(33) DEFAULT NULL,
|
||||
`Mounts` binary(13) DEFAULT NULL,
|
||||
`Orchestrion` binary(38) DEFAULT NULL,
|
||||
`EquippedMannequin` int(5) DEFAULT '0',
|
||||
`ConfigFlags` smallint(5) NOT NULL DEFAULT '0',
|
||||
`QuestCompleteFlags` binary(200) DEFAULT NULL,
|
||||
|
@ -76,7 +75,7 @@ CREATE TABLE `charainfo` (
|
|||
`GMRank` int(3) DEFAULT '0',
|
||||
`Unlocks` binary(64) DEFAULT NULL,
|
||||
`CFPenaltyUntil` int(11) DEFAULT NULL,
|
||||
`UPDATE_DATE` datetime DEFAULT NULL,
|
||||
`UPDATE_DATE` DATETIME NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
|
||||
PRIMARY KEY (`CharacterId`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
|
||||
|
||||
|
|
|
@ -39,3 +39,6 @@ MODIFY COLUMN UPDATE_DATE DATETIME NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURR
|
|||
|
||||
ALTER TABLE uniqueiddata
|
||||
MODIFY COLUMN UPDATE_DATE DATETIME NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP;
|
||||
|
||||
ALTER TABLE charainfo
|
||||
ADD `Orchestrion` binary(38) DEFAULT NULL AFTER `Mounts`;
|
||||
|
|
Loading…
Add table
Reference in a new issue