diff options
author | Melanie | 2013-06-06 03:17:38 +0100 |
---|---|---|
committer | Melanie | 2013-06-06 03:17:38 +0100 |
commit | a3210d1cf812554b53afb407fd76dbb67ce2ac28 (patch) | |
tree | 2457f674b32aa082d1548a20af872eb0ae61abc9 /OpenSim/Data/MySQL/Resources | |
parent | Hook up Keyframe motion to almost everything. Failing to cross a sim border (diff) | |
download | opensim-SC_OLD-a3210d1cf812554b53afb407fd76dbb67ce2ac28.zip opensim-SC_OLD-a3210d1cf812554b53afb407fd76dbb67ce2ac28.tar.gz opensim-SC_OLD-a3210d1cf812554b53afb407fd76dbb67ce2ac28.tar.bz2 opensim-SC_OLD-a3210d1cf812554b53afb407fd76dbb67ce2ac28.tar.xz |
Database persistence for keyframes. Contains a Migration.
Diffstat (limited to 'OpenSim/Data/MySQL/Resources')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/RegionStore.migrations | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/RegionStore.migrations b/OpenSim/Data/MySQL/Resources/RegionStore.migrations index 513c784..70b9558 100644 --- a/OpenSim/Data/MySQL/Resources/RegionStore.migrations +++ b/OpenSim/Data/MySQL/Resources/RegionStore.migrations | |||
@@ -923,3 +923,10 @@ ALTER TABLE prims ADD COLUMN `Restitution` double NOT NULL default '0.5'; | |||
923 | 923 | ||
924 | COMMIT; | 924 | COMMIT; |
925 | 925 | ||
926 | :VERSION 48 #---------------- Keyframes | ||
927 | |||
928 | BEGIN; | ||
929 | |||
930 | ALTER TABLE prims ADD COLUMN `KeyframeMotion` blob; | ||
931 | |||
932 | COMMIT; | ||