From 8d28c9487943ec5221464b0661a504db44c0fa5e Mon Sep 17 00:00:00 2001 From: UbitUmarov Date: Fri, 28 Dec 2018 18:52:31 +0000 Subject: [PATCH] PGSQL: it may be a good idea to also add the field to the table --- OpenSim/Data/PGSQL/Resources/RegionStore.migrations | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/OpenSim/Data/PGSQL/Resources/RegionStore.migrations b/OpenSim/Data/PGSQL/Resources/RegionStore.migrations index fcefb6baa3..58e84f7581 100644 --- a/OpenSim/Data/PGSQL/Resources/RegionStore.migrations +++ b/OpenSim/Data/PGSQL/Resources/RegionStore.migrations @@ -1225,3 +1225,10 @@ ALTER TABLE "public"."prims" ELSE NULL END; COMMIT; + +:VERSION 48 #---- field Vehicle to table prims + +BEGIN TRANSACTION; + +ALTER TABLE prims ADD "Vehicle" TEXT; +COMMIT;