Support for Linden AgentPreferences capability and friends (UpdateAgentLanguage and UpdateAgentInformation) and Mantis #7157

Signed-off-by: Diva Canto <diva@metaverseink.com>
This commit is contained in:
Cinder
2015-06-05 08:52:25 -06:00
committed by Diva Canto
parent 14a9596121
commit 6f71d5c2c6
6 changed files with 419 additions and 5 deletions

View File

@@ -0,0 +1,18 @@
:VERSION 1 # -------------------------
BEGIN;
CREATE TABLE `AgentPrefs` (
`PrincipalID` CHAR(36) NOT NULL,
`AccessPrefs` CHAR(2) NOT NULL DEFAULT 'M',
`HoverHeight` DOUBLE(30, 27) NOT NULL DEFAULT 0,
`Language` CHAR(5) NOT NULL DEFAULT 'en-us',
`LanguageIsPublic` BOOLEAN NOT NULL DEFAULT 1,
`PermEveryone` INT(6) NOT NULL DEFAULT 0,
`PermGroup` INT(6) NOT NULL DEFAULT 0,
`PermNextOwner` INT(6) NOT NULL DEFAULT 532480,
UNIQUE KEY `PrincipalID` (`PrincipalID`),
PRIMARY KEY(`PrincipalID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
COMMIT;