mirror of
https://github.com/opensim/opensim.git
synced 2026-08-01 22:26:09 +08:00
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:
18
OpenSim/Data/MySQL/Resources/AgentPrefs.migrations
Normal file
18
OpenSim/Data/MySQL/Resources/AgentPrefs.migrations
Normal 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;
|
||||
Reference in New Issue
Block a user