diff options
author | Mic Bowman | 2013-02-08 22:43:56 -0800 |
---|---|---|
committer | Mic Bowman | 2013-02-08 22:43:56 -0800 |
commit | 0a297a0e52b673427ff61b254f6065c217b1375d (patch) | |
tree | aa337fff2dfda8677a7a76eb08b76a1d07df178a /OpenSim/Data/MSSQL/Resources/RegionStore.migrations | |
parent | Make JsonStore path parsing more robust. Should fix the (diff) | |
parent | Fixed ReadSculptData(): the check whether there are enough bytes to read was ... (diff) | |
download | opensim-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.migrations | 12 |
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 | |||
1156 | ALTER TABLE prims ADD COLUMN DynAttrs TEXT; | 1156 | ALTER TABLE prims ADD COLUMN DynAttrs TEXT; |
1157 | 1157 | ||
1158 | COMMIT | 1158 | COMMIT |
1159 | |||
1160 | :VERSION 39 #---------------- Extra physics params | ||
1161 | |||
1162 | BEGIN TRANSACTION | ||
1163 | |||
1164 | ALTER TABLE prims ADD COLUMN `PhysicsShapeType` tinyint(4) NOT NULL default '0'; | ||
1165 | ALTER TABLE prims ADD COLUMN `Density` double NOT NULL default '1000'; | ||
1166 | ALTER TABLE prims ADD COLUMN `GravityModifier` double NOT NULL default '1'; | ||
1167 | ALTER TABLE prims ADD COLUMN `Friction` double NOT NULL default '0.6'; | ||
1168 | ALTER TABLE prims ADD COLUMN `Restitution` double NOT NULL default '0.5'; | ||
1169 | |||
1170 | COMMIT | ||