aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/Resources
diff options
context:
space:
mode:
authorMelanie2013-06-11 21:01:58 +0100
committerMelanie2013-06-11 21:01:58 +0100
commit400f876d98d71ba8480ab5b3af040c4bae7c5009 (patch)
tree1444058a9f65e43bb481693d5bb361fe4788311b /OpenSim/Data/SQLite/Resources
parentMerge branch 'master' into careminster (diff)
parent* Adds KeyFrameMotion storage support to SQLite, just a note, seems that ... (diff)
downloadopensim-SC_OLD-400f876d98d71ba8480ab5b3af040c4bae7c5009.zip
opensim-SC_OLD-400f876d98d71ba8480ab5b3af040c4bae7c5009.tar.gz
opensim-SC_OLD-400f876d98d71ba8480ab5b3af040c4bae7c5009.tar.bz2
opensim-SC_OLD-400f876d98d71ba8480ab5b3af040c4bae7c5009.tar.xz
Merge branch 'master' into careminster
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/SQLite/Resources/RegionStore.migrations8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Data/SQLite/Resources/RegionStore.migrations b/OpenSim/Data/SQLite/Resources/RegionStore.migrations
index c6f4b48..bff039d 100644
--- a/OpenSim/Data/SQLite/Resources/RegionStore.migrations
+++ b/OpenSim/Data/SQLite/Resources/RegionStore.migrations
@@ -592,3 +592,11 @@ ALTER TABLE prims ADD COLUMN `Friction` double NOT NULL default '0.6';
592ALTER TABLE prims ADD COLUMN `Restitution` double NOT NULL default '0.5'; 592ALTER TABLE prims ADD COLUMN `Restitution` double NOT NULL default '0.5';
593 593
594COMMIT; 594COMMIT;
595
596:VERSION 29 #---------------- Keyframes
597
598BEGIN;
599
600ALTER TABLE prims ADD COLUMN `KeyframeMotion` blob;
601
602COMMIT;