aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/Resources
diff options
context:
space:
mode:
authorUbitUmarov2017-04-01 18:15:47 +0100
committerUbitUmarov2017-04-01 18:15:47 +0100
commit44993550a85f411e5ea88a889fb652744e2d3d1b (patch)
tree3a3313767f8a061e7e786b38b53aacfe594ad924 /OpenSim/Data/SQLite/Resources
parent store the physics inertia override in Mysql and add it to serializer. run p... (diff)
downloadopensim-SC_OLD-44993550a85f411e5ea88a889fb652744e2d3d1b.zip
opensim-SC_OLD-44993550a85f411e5ea88a889fb652744e2d3d1b.tar.gz
opensim-SC_OLD-44993550a85f411e5ea88a889fb652744e2d3d1b.tar.bz2
opensim-SC_OLD-44993550a85f411e5ea88a889fb652744e2d3d1b.tar.xz
store the physics inertia override in SQlite
Diffstat (limited to 'OpenSim/Data/SQLite/Resources')
-rw-r--r--OpenSim/Data/SQLite/Resources/RegionStore.migrations6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Data/SQLite/Resources/RegionStore.migrations b/OpenSim/Data/SQLite/Resources/RegionStore.migrations
index eef14d6..fb154cf 100644
--- a/OpenSim/Data/SQLite/Resources/RegionStore.migrations
+++ b/OpenSim/Data/SQLite/Resources/RegionStore.migrations
@@ -371,3 +371,9 @@ BEGIN;
371ALTER TABLE `prims` ADD COLUMN `RezzerID` char(36) DEFAULT NULL; 371ALTER TABLE `prims` ADD COLUMN `RezzerID` char(36) DEFAULT NULL;
372 372
373COMMIT; 373COMMIT;
374
375:VERSION 36 #----- Add physics inertia data
376
377BEGIN;
378ALTER TABLE `prims` ADD COLUMN `PhysInertia` TEXT default NULL;
379COMMIT;