diff options
author | UbitUmarov | 2017-04-01 18:15:47 +0100 |
---|---|---|
committer | UbitUmarov | 2017-04-01 18:15:47 +0100 |
commit | 44993550a85f411e5ea88a889fb652744e2d3d1b (patch) | |
tree | 3a3313767f8a061e7e786b38b53aacfe594ad924 /OpenSim/Data/SQLite/Resources/RegionStore.migrations | |
parent | store the physics inertia override in Mysql and add it to serializer. run p... (diff) | |
download | opensim-SC-44993550a85f411e5ea88a889fb652744e2d3d1b.zip opensim-SC-44993550a85f411e5ea88a889fb652744e2d3d1b.tar.gz opensim-SC-44993550a85f411e5ea88a889fb652744e2d3d1b.tar.bz2 opensim-SC-44993550a85f411e5ea88a889fb652744e2d3d1b.tar.xz |
store the physics inertia override in SQlite
Diffstat (limited to 'OpenSim/Data/SQLite/Resources/RegionStore.migrations')
-rw-r--r-- | OpenSim/Data/SQLite/Resources/RegionStore.migrations | 6 |
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; | |||
371 | ALTER TABLE `prims` ADD COLUMN `RezzerID` char(36) DEFAULT NULL; | 371 | ALTER TABLE `prims` ADD COLUMN `RezzerID` char(36) DEFAULT NULL; |
372 | 372 | ||
373 | COMMIT; | 373 | COMMIT; |
374 | |||
375 | :VERSION 36 #----- Add physics inertia data | ||
376 | |||
377 | BEGIN; | ||
378 | ALTER TABLE `prims` ADD COLUMN `PhysInertia` TEXT default NULL; | ||
379 | COMMIT; | ||