aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/SQLite/Resources/RegionStore.migrations
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2013-01-25 04:22:32 +0000
committerJustin Clark-Casey (justincc)2013-01-25 04:22:32 +0000
commit77894151485e4e6ad397cee85a551a4593e57cdd (patch)
tree2e2644ec3cd821d22ee64abb8b99ba597e9fdc81 /OpenSim/Data/SQLite/Resources/RegionStore.migrations
parentAdded unit tests for Dynamic Attributes (diff)
downloadopensim-SC_OLD-77894151485e4e6ad397cee85a551a4593e57cdd.zip
opensim-SC_OLD-77894151485e4e6ad397cee85a551a4593e57cdd.tar.gz
opensim-SC_OLD-77894151485e4e6ad397cee85a551a4593e57cdd.tar.bz2
opensim-SC_OLD-77894151485e4e6ad397cee85a551a4593e57cdd.tar.xz
Fix tests by adding DynAttrs add column commands to RegionStore.migrations (these were originally in 021_RegionStore.sql which I might have forgotton to add 2 years ago).
Diffstat (limited to 'OpenSim/Data/SQLite/Resources/RegionStore.migrations')
-rw-r--r--OpenSim/Data/SQLite/Resources/RegionStore.migrations6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Data/SQLite/Resources/RegionStore.migrations b/OpenSim/Data/SQLite/Resources/RegionStore.migrations
index e872977..4c3c55d 100644
--- a/OpenSim/Data/SQLite/Resources/RegionStore.migrations
+++ b/OpenSim/Data/SQLite/Resources/RegionStore.migrations
@@ -575,3 +575,9 @@ CREATE TABLE `regionenvironment` (
575); 575);
576 576
577COMMIT; 577COMMIT;
578
579:VERSION 27
580BEGIN;
581ALTER TABLE prims ADD COLUMN DynAttrs TEXT;
582ALTER TABLE primshapes ADD COLUMN DynAttrs TEXT;
583COMMIT; \ No newline at end of file