diff options
author | Justin Clark-Casey (justincc) | 2013-02-05 00:35:15 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-02-05 00:35:15 +0000 |
commit | 1fc9f282fa7d3b8efa54a27a25b0916e82d62f61 (patch) | |
tree | f220060baa0f8eeedd4a7af23dbdd371e260b57b /OpenSim/Data/MySQL/Resources | |
parent | Bump version and assembly version numbers from 0.7.5 to 0.7.6 (diff) | |
parent | Remove the accidental PrimShapes column that I added back to the SQLite regio... (diff) | |
download | opensim-SC-1fc9f282fa7d3b8efa54a27a25b0916e82d62f61.zip opensim-SC-1fc9f282fa7d3b8efa54a27a25b0916e82d62f61.tar.gz opensim-SC-1fc9f282fa7d3b8efa54a27a25b0916e82d62f61.tar.bz2 opensim-SC-1fc9f282fa7d3b8efa54a27a25b0916e82d62f61.tar.xz |
Merge branch 'dynamic-attributes2'
Diffstat (limited to 'OpenSim/Data/MySQL/Resources')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/RegionStore.migrations | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/RegionStore.migrations b/OpenSim/Data/MySQL/Resources/RegionStore.migrations index 5b59779..c48aec2 100644 --- a/OpenSim/Data/MySQL/Resources/RegionStore.migrations +++ b/OpenSim/Data/MySQL/Resources/RegionStore.migrations | |||
@@ -902,3 +902,11 @@ BEGIN; | |||
902 | CREATE TABLE `regionextra` (`RegionID` char(36) not null, `Name` varchar(32) not null, `value` text, primary key(`RegionID`, `Name`)); | 902 | CREATE TABLE `regionextra` (`RegionID` char(36) not null, `Name` varchar(32) not null, `value` text, primary key(`RegionID`, `Name`)); |
903 | 903 | ||
904 | COMMIT; | 904 | COMMIT; |
905 | |||
906 | :VERSION 46 #---------------- Dynamic attributes | ||
907 | |||
908 | BEGIN; | ||
909 | |||
910 | ALTER TABLE prims ADD COLUMN DynAttrs TEXT; | ||
911 | |||
912 | COMMIT; | ||