aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/PGSQL/Resources
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Data/PGSQL/Resources')
-rw-r--r--OpenSim/Data/PGSQL/Resources/EstateStore.migrations8
-rw-r--r--OpenSim/Data/PGSQL/Resources/RegionStore.migrations7
2 files changed, 15 insertions, 0 deletions
diff --git a/OpenSim/Data/PGSQL/Resources/EstateStore.migrations b/OpenSim/Data/PGSQL/Resources/EstateStore.migrations
index 5b450aa..d0730bb 100644
--- a/OpenSim/Data/PGSQL/Resources/EstateStore.migrations
+++ b/OpenSim/Data/PGSQL/Resources/EstateStore.migrations
@@ -125,3 +125,11 @@ CREATE SEQUENCE IF NOT EXISTS "public"."estate_settings_id"
125 CACHE 1; 125 CACHE 1;
126 126
127COMMIT; 127COMMIT;
128
129:VERSION 14
130BEGIN TRANSACTION;
131
132ALTER TABLE "public"."estateban"
133 ADD COLUMN "banningUUID" uuid NOT NULL,
134 ADD COLUMN "banTime" int4 NOT NULL DEFAULT 0;
135COMMIT;
diff --git a/OpenSim/Data/PGSQL/Resources/RegionStore.migrations b/OpenSim/Data/PGSQL/Resources/RegionStore.migrations
index fcefb6b..58e84f7 100644
--- a/OpenSim/Data/PGSQL/Resources/RegionStore.migrations
+++ b/OpenSim/Data/PGSQL/Resources/RegionStore.migrations
@@ -1225,3 +1225,10 @@ ALTER TABLE "public"."prims"
1225 ELSE NULL 1225 ELSE NULL
1226 END; 1226 END;
1227COMMIT; 1227COMMIT;
1228
1229:VERSION 48 #---- field Vehicle to table prims
1230
1231BEGIN TRANSACTION;
1232
1233ALTER TABLE prims ADD "Vehicle" TEXT;
1234COMMIT;