diff options
author | Geir Nøklebye | 2017-04-20 15:41:28 +0200 |
---|---|---|
committer | UbitUmarov | 2017-04-20 21:21:23 +0100 |
commit | ebcfad1a839557b3f0d28bf34e627f63dc59d9eb (patch) | |
tree | 6a8c7b1ad3b58ea68a608e38b42af8dae18cff75 /OpenSim/Data/PGSQL/Resources/RegionStore.migrations | |
parent | update ode binaries for windows; add a minimal velocity for bounce (diff) | |
download | opensim-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.migrations | 7 |
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 | ||
1205 | COMMIT; | 1205 | COMMIT; |
1206 | 1206 | ||
1207 | :VERSION 46 #---- Add physics inertia data to table prims | ||
1208 | |||
1209 | BEGIN TRANSACTION; | ||
1210 | |||
1211 | ALTER TABLE prims ADD "PhysInertia" TEXT; | ||
1212 | |||
1213 | COMMIT; | ||