diff options
author | Cinder | 2015-06-05 08:52:25 -0600 |
---|---|---|
committer | Diva Canto | 2015-06-13 07:27:01 -0700 |
commit | 6f71d5c2c65802bd6b0196e825cabbfe8d34fe9e (patch) | |
tree | cbf18dd1caee32b0c2c9571e7f18466de1da87cc /OpenSim/Data/MySQL/Resources/AgentPrefs.migrations | |
parent | Removing parts that escaped from the lab - thanks AliciaRaven (diff) | |
download | opensim-SC-6f71d5c2c65802bd6b0196e825cabbfe8d34fe9e.zip opensim-SC-6f71d5c2c65802bd6b0196e825cabbfe8d34fe9e.tar.gz opensim-SC-6f71d5c2c65802bd6b0196e825cabbfe8d34fe9e.tar.bz2 opensim-SC-6f71d5c2c65802bd6b0196e825cabbfe8d34fe9e.tar.xz |
Support for Linden AgentPreferences capability and friends (UpdateAgentLanguage and UpdateAgentInformation) and Mantis #7157
Signed-off-by: Diva Canto <diva@metaverseink.com>
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/AgentPrefs.migrations | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/AgentPrefs.migrations b/OpenSim/Data/MySQL/Resources/AgentPrefs.migrations new file mode 100644 index 0000000..e496f72 --- /dev/null +++ b/OpenSim/Data/MySQL/Resources/AgentPrefs.migrations | |||
@@ -0,0 +1,18 @@ | |||
1 | :VERSION 1 # ------------------------- | ||
2 | |||
3 | BEGIN; | ||
4 | |||
5 | CREATE TABLE `AgentPrefs` ( | ||
6 | `PrincipalID` CHAR(36) NOT NULL, | ||
7 | `AccessPrefs` CHAR(2) NOT NULL DEFAULT 'M', | ||
8 | `HoverHeight` DOUBLE(30, 27) NOT NULL DEFAULT 0, | ||
9 | `Language` CHAR(5) NOT NULL DEFAULT 'en-us', | ||
10 | `LanguageIsPublic` BOOLEAN NOT NULL DEFAULT 1, | ||
11 | `PermEveryone` INT(6) NOT NULL DEFAULT 0, | ||
12 | `PermGroup` INT(6) NOT NULL DEFAULT 0, | ||
13 | `PermNextOwner` INT(6) NOT NULL DEFAULT 532480, | ||
14 | UNIQUE KEY `PrincipalID` (`PrincipalID`), | ||
15 | PRIMARY KEY(`PrincipalID`) | ||
16 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8; | ||
17 | |||
18 | COMMIT; | ||