aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/Resources
diff options
context:
space:
mode:
authorMic Bowman2013-02-08 22:43:56 -0800
committerMic Bowman2013-02-08 22:43:56 -0800
commit0a297a0e52b673427ff61b254f6065c217b1375d (patch)
treeaa337fff2dfda8677a7a76eb08b76a1d07df178a /OpenSim/Data/SQLite/Resources
parentMake JsonStore path parsing more robust. Should fix the (diff)
parentFixed ReadSculptData(): the check whether there are enough bytes to read was ... (diff)
downloadopensim-SC_OLD-0a297a0e52b673427ff61b254f6065c217b1375d.zip
opensim-SC_OLD-0a297a0e52b673427ff61b254f6065c217b1375d.tar.gz
opensim-SC_OLD-0a297a0e52b673427ff61b254f6065c217b1375d.tar.bz2
opensim-SC_OLD-0a297a0e52b673427ff61b254f6065c217b1375d.tar.xz
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Data/SQLite/Resources')
-rw-r--r--OpenSim/Data/SQLite/Resources/RegionStore.migrations12
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Data/SQLite/Resources/RegionStore.migrations b/OpenSim/Data/SQLite/Resources/RegionStore.migrations
index e583dc2..c6f4b48 100644
--- a/OpenSim/Data/SQLite/Resources/RegionStore.migrations
+++ b/OpenSim/Data/SQLite/Resources/RegionStore.migrations
@@ -580,3 +580,15 @@ COMMIT;
580BEGIN; 580BEGIN;
581ALTER TABLE prims ADD COLUMN DynAttrs TEXT; 581ALTER TABLE prims ADD COLUMN DynAttrs TEXT;
582COMMIT; 582COMMIT;
583
584:VERSION 28
585
586BEGIN;
587
588ALTER TABLE prims ADD COLUMN `PhysicsShapeType` tinyint(4) NOT NULL default '0';
589ALTER TABLE prims ADD COLUMN `Density` double NOT NULL default '1000';
590ALTER TABLE prims ADD COLUMN `GravityModifier` double NOT NULL default '1';
591ALTER TABLE prims ADD COLUMN `Friction` double NOT NULL default '0.6';
592ALTER TABLE prims ADD COLUMN `Restitution` double NOT NULL default '0.5';
593
594COMMIT;