diff options
author | Justin Clark-Casey (justincc) | 2010-08-16 21:57:08 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-01-25 04:03:09 +0000 |
commit | a3e1e6dd611a179eb2d894a45ae45ef278ae2e85 (patch) | |
tree | b37946a51c993b9c0ee94851391b41cfff497e28 /OpenSim/Data/MySQL/Resources | |
parent | Add DAExampleModule to demonstrate dynamic attributes (diff) | |
download | opensim-SC_OLD-a3e1e6dd611a179eb2d894a45ae45ef278ae2e85.zip opensim-SC_OLD-a3e1e6dd611a179eb2d894a45ae45ef278ae2e85.tar.gz opensim-SC_OLD-a3e1e6dd611a179eb2d894a45ae45ef278ae2e85.tar.bz2 opensim-SC_OLD-a3e1e6dd611a179eb2d894a45ae45ef278ae2e85.tar.xz |
Implement dynamic attribute persistence on mysql and mssql
mssql is untested
Diffstat (limited to 'OpenSim/Data/MySQL/Resources')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/RegionStore.migrations | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/RegionStore.migrations b/OpenSim/Data/MySQL/Resources/RegionStore.migrations index 5b59779..1a38836 100644 --- a/OpenSim/Data/MySQL/Resources/RegionStore.migrations +++ b/OpenSim/Data/MySQL/Resources/RegionStore.migrations | |||
@@ -902,3 +902,12 @@ 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 | ALTER TABLE primshapes ADD COLUMN DynAttrs TEXT; | ||
912 | |||
913 | COMMIT; | ||