diff options
author | Justin Clark-Casey (justincc) | 2013-01-25 04:22:32 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2013-01-25 04:22:32 +0000 |
commit | 77894151485e4e6ad397cee85a551a4593e57cdd (patch) | |
tree | 2e2644ec3cd821d22ee64abb8b99ba597e9fdc81 /OpenSim/Data/SQLite | |
parent | Added unit tests for Dynamic Attributes (diff) | |
download | opensim-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')
-rw-r--r-- | OpenSim/Data/SQLite/Resources/RegionStore.migrations | 6 |
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 | ||
577 | COMMIT; | 577 | COMMIT; |
578 | |||
579 | :VERSION 27 | ||
580 | BEGIN; | ||
581 | ALTER TABLE prims ADD COLUMN DynAttrs TEXT; | ||
582 | ALTER TABLE primshapes ADD COLUMN DynAttrs TEXT; | ||
583 | COMMIT; \ No newline at end of file | ||