aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/PGSQL/Resources/RegionStore.migrations
diff options
context:
space:
mode:
authorGeir Nøklebye2017-04-20 15:41:28 +0200
committerUbitUmarov2017-04-20 21:21:23 +0100
commitebcfad1a839557b3f0d28bf34e627f63dc59d9eb (patch)
tree6a8c7b1ad3b58ea68a608e38b42af8dae18cff75 /OpenSim/Data/PGSQL/Resources/RegionStore.migrations
parent update ode binaries for windows; add a minimal velocity for bounce (diff)
downloadopensim-SC_OLD-ebcfad1a839557b3f0d28bf34e627f63dc59d9eb.zip
opensim-SC_OLD-ebcfad1a839557b3f0d28bf34e627f63dc59d9eb.tar.gz
opensim-SC_OLD-ebcfad1a839557b3f0d28bf34e627f63dc59d9eb.tar.bz2
opensim-SC_OLD-ebcfad1a839557b3f0d28bf34e627f63dc59d9eb.tar.xz
store the physics inertia override in the database
Signed-off-by: UbitUmarov <ajlduarte@sapo.pt>
Diffstat (limited to '')
-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 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;
1204 1204
1205COMMIT; 1205COMMIT;
1206 1206
1207:VERSION 46 #---- Add physics inertia data to table prims
1208
1209BEGIN TRANSACTION;
1210
1211ALTER TABLE prims ADD "PhysInertia" TEXT;
1212
1213COMMIT;