diff options
author | Melanie | 2013-06-11 21:01:58 +0100 |
---|---|---|
committer | Melanie | 2013-06-11 21:01:58 +0100 |
commit | 400f876d98d71ba8480ab5b3af040c4bae7c5009 (patch) | |
tree | 1444058a9f65e43bb481693d5bb361fe4788311b /OpenSim/Data/SQLite/Resources | |
parent | Merge branch 'master' into careminster (diff) | |
parent | * Adds KeyFrameMotion storage support to SQLite, just a note, seems that ... (diff) | |
download | opensim-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.migrations | 8 |
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'; | |||
592 | ALTER TABLE prims ADD COLUMN `Restitution` double NOT NULL default '0.5'; | 592 | ALTER TABLE prims ADD COLUMN `Restitution` double NOT NULL default '0.5'; |
593 | 593 | ||
594 | COMMIT; | 594 | COMMIT; |
595 | |||
596 | :VERSION 29 #---------------- Keyframes | ||
597 | |||
598 | BEGIN; | ||
599 | |||
600 | ALTER TABLE prims ADD COLUMN `KeyframeMotion` blob; | ||
601 | |||
602 | COMMIT; | ||