mirror of
https://github.com/opensim/opensim.git
synced 2026-08-09 18:55:58 +08:00
Removed the pgsql table for AgentPrefs, because it is not working. For now the Agent Preferences feature will not work with PGSQL installations -- someone who uses PGSQL needs to send a table that works.
This commit is contained in:
@@ -1,18 +0,0 @@
|
||||
:VERSION 2
|
||||
|
||||
BEGIN TRANSACTION;
|
||||
|
||||
DROP TABLE IF EXISTS "AgentPrefs";
|
||||
CREATE TABLE "AgentPrefs" (
|
||||
"PrincipalID" uuid NOT NULL,
|
||||
"AccessPrefs" CHAR(2) NOT NULL DEFAULT 'M',
|
||||
"HoverHeight" DOUBLE PRECISION NOT NULL DEFAULT 0,
|
||||
"Language" CHAR(5) NOT NULL DEFAULT 'en-us',
|
||||
"LanguageIsPublic" BOOLEAN NOT NULL DEFAULT true,
|
||||
"PermEveryone" INT4 NOT NULL DEFAULT 0,
|
||||
"PermGroup" INT4 NOT NULL DEFAULT 0,
|
||||
"PermNextOwner" INT4 NOT NULL DEFAULT 532480
|
||||
);
|
||||
ALTER TABLE "AgentPrefs" ADD PRIMARY KEY("PrincipalID");
|
||||
|
||||
COMMIT;
|
||||
Reference in New Issue
Block a user