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/MSSQL/Resources/RegionStore.migrations | |
parent | Add DAExampleModule to demonstrate dynamic attributes (diff) | |
download | opensim-SC-a3e1e6dd611a179eb2d894a45ae45ef278ae2e85.zip opensim-SC-a3e1e6dd611a179eb2d894a45ae45ef278ae2e85.tar.gz opensim-SC-a3e1e6dd611a179eb2d894a45ae45ef278ae2e85.tar.bz2 opensim-SC-a3e1e6dd611a179eb2d894a45ae45ef278ae2e85.tar.xz |
Implement dynamic attribute persistence on mysql and mssql
mssql is untested
Diffstat (limited to 'OpenSim/Data/MSSQL/Resources/RegionStore.migrations')
-rw-r--r-- | OpenSim/Data/MSSQL/Resources/RegionStore.migrations | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Data/MSSQL/Resources/RegionStore.migrations b/OpenSim/Data/MSSQL/Resources/RegionStore.migrations index 350e548..5e88e36 100644 --- a/OpenSim/Data/MSSQL/Resources/RegionStore.migrations +++ b/OpenSim/Data/MSSQL/Resources/RegionStore.migrations | |||
@@ -1148,3 +1148,12 @@ CREATE TABLE [dbo].[regionenvironment]( | |||
1148 | ) ON [PRIMARY] | 1148 | ) ON [PRIMARY] |
1149 | 1149 | ||
1150 | COMMIT | 1150 | COMMIT |
1151 | |||
1152 | :VERSION 38 #---------------- Dynamic attributes | ||
1153 | |||
1154 | BEGIN TRANSACTION | ||
1155 | |||
1156 | ALTER TABLE prims ADD COLUMN DynAttrs TEXT; | ||
1157 | ALTER TABLE primshapes ADD COLUMN DynAttrs TEXT; | ||
1158 | |||
1159 | COMMIT | ||