aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MSSQL/Resources/RegionStore.migrations
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/MSSQL/Resources/RegionStore.migrations
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-0a297a0e52b673427ff61b254f6065c217b1375d.zip
opensim-SC-0a297a0e52b673427ff61b254f6065c217b1375d.tar.gz
opensim-SC-0a297a0e52b673427ff61b254f6065c217b1375d.tar.bz2
opensim-SC-0a297a0e52b673427ff61b254f6065c217b1375d.tar.xz
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/MSSQL/Resources/RegionStore.migrations12
1 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Data/MSSQL/Resources/RegionStore.migrations b/OpenSim/Data/MSSQL/Resources/RegionStore.migrations
index 92cc38a..b84c2a4 100644
--- a/OpenSim/Data/MSSQL/Resources/RegionStore.migrations
+++ b/OpenSim/Data/MSSQL/Resources/RegionStore.migrations
@@ -1156,3 +1156,15 @@ BEGIN TRANSACTION
1156ALTER TABLE prims ADD COLUMN DynAttrs TEXT; 1156ALTER TABLE prims ADD COLUMN DynAttrs TEXT;
1157 1157
1158COMMIT 1158COMMIT
1159
1160:VERSION 39 #---------------- Extra physics params
1161
1162BEGIN TRANSACTION
1163
1164ALTER TABLE prims ADD COLUMN `PhysicsShapeType` tinyint(4) NOT NULL default '0';
1165ALTER TABLE prims ADD COLUMN `Density` double NOT NULL default '1000';
1166ALTER TABLE prims ADD COLUMN `GravityModifier` double NOT NULL default '1';
1167ALTER TABLE prims ADD COLUMN `Friction` double NOT NULL default '0.6';
1168ALTER TABLE prims ADD COLUMN `Restitution` double NOT NULL default '0.5';
1169
1170COMMIT