aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/PGSQL/Resources/AgentPrefs.migrations
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Data/PGSQL/Resources/AgentPrefs.migrations')
-rw-r--r--OpenSim/Data/PGSQL/Resources/AgentPrefs.migrations18
1 files changed, 0 insertions, 18 deletions
diff --git a/OpenSim/Data/PGSQL/Resources/AgentPrefs.migrations b/OpenSim/Data/PGSQL/Resources/AgentPrefs.migrations
deleted file mode 100644
index 6154719..0000000
--- a/OpenSim/Data/PGSQL/Resources/AgentPrefs.migrations
+++ /dev/null
@@ -1,18 +0,0 @@
1:VERSION 2
2
3BEGIN TRANSACTION;
4
5DROP TABLE IF EXISTS "AgentPrefs";
6CREATE TABLE "AgentPrefs" (
7 "PrincipalID" uuid NOT NULL,
8 "AccessPrefs" CHAR(2) NOT NULL DEFAULT 'M',
9 "HoverHeight" DOUBLE PRECISION NOT NULL DEFAULT 0,
10 "Language" CHAR(5) NOT NULL DEFAULT 'en-us',
11 "LanguageIsPublic" BOOLEAN NOT NULL DEFAULT true,
12 "PermEveryone" INT4 NOT NULL DEFAULT 0,
13 "PermGroup" INT4 NOT NULL DEFAULT 0,
14 "PermNextOwner" INT4 NOT NULL DEFAULT 532480
15 );
16 ALTER TABLE "AgentPrefs" ADD PRIMARY KEY("PrincipalID");
17
18COMMIT; \ No newline at end of file