From 28125202cc320dee3f4908f07eb4fbc04a134d6e Mon Sep 17 00:00:00 2001 From: Geir Nøklebye Date: Thu, 13 Apr 2017 11:54:25 +0200 Subject: update for The new Constant: integer OBJECT_REZZER_KEY = 32 + adding missing support for fields in the prims table. Signed-off-by: Michael Cerquoni --- OpenSim/Data/PGSQL/Resources/RegionStore.migrations | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'OpenSim/Data/PGSQL/Resources/RegionStore.migrations') diff --git a/OpenSim/Data/PGSQL/Resources/RegionStore.migrations b/OpenSim/Data/PGSQL/Resources/RegionStore.migrations index c085939..2f197bf 100644 --- a/OpenSim/Data/PGSQL/Resources/RegionStore.migrations +++ b/OpenSim/Data/PGSQL/Resources/RegionStore.migrations @@ -1195,3 +1195,12 @@ CREATE TABLE bakedterrain ); COMMIT; + +:VERSION 45 #---- Add RezzerID filed in table prims + +BEGIN TRANSACTION; + +ALTER TABLE prims ADD "RezzerID" uuid NULL; + +COMMIT; + -- cgit v1.1 From ebcfad1a839557b3f0d28bf34e627f63dc59d9eb Mon Sep 17 00:00:00 2001 From: Geir Nøklebye Date: Thu, 20 Apr 2017 15:41:28 +0200 Subject: store the physics inertia override in the database Signed-off-by: UbitUmarov --- OpenSim/Data/PGSQL/Resources/RegionStore.migrations | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'OpenSim/Data/PGSQL/Resources/RegionStore.migrations') diff --git a/OpenSim/Data/PGSQL/Resources/RegionStore.migrations b/OpenSim/Data/PGSQL/Resources/RegionStore.migrations index 2f197bf..948d177 100644 --- a/OpenSim/Data/PGSQL/Resources/RegionStore.migrations +++ b/OpenSim/Data/PGSQL/Resources/RegionStore.migrations @@ -1204,3 +1204,10 @@ ALTER TABLE prims ADD "RezzerID" uuid NULL; COMMIT; +:VERSION 46 #---- Add physics inertia data to table prims + +BEGIN TRANSACTION; + +ALTER TABLE prims ADD "PhysInertia" TEXT; + +COMMIT; -- cgit v1.1