aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/PGSQL/Resources
diff options
context:
space:
mode:
authorUbitUmarov2018-12-28 18:52:31 +0000
committerUbitUmarov2018-12-28 18:52:31 +0000
commit8d28c9487943ec5221464b0661a504db44c0fa5e (patch)
treed26a363138967bc356226e3484db564a6127b4a7 /OpenSim/Data/PGSQL/Resources
parentPGSQL: store vehicle data (diff)
downloadopensim-SC-8d28c9487943ec5221464b0661a504db44c0fa5e.zip
opensim-SC-8d28c9487943ec5221464b0661a504db44c0fa5e.tar.gz
opensim-SC-8d28c9487943ec5221464b0661a504db44c0fa5e.tar.bz2
opensim-SC-8d28c9487943ec5221464b0661a504db44c0fa5e.tar.xz
PGSQL: it may be a good idea to also add the field to the table
Diffstat (limited to 'OpenSim/Data/PGSQL/Resources')
-rw-r--r--OpenSim/Data/PGSQL/Resources/RegionStore.migrations7
1 files changed, 7 insertions, 0 deletions
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;