diff options
author | Justin Clark-Casey (justincc) | 2010-07-15 23:28:36 +0100 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2010-07-26 23:34:22 +0100 |
commit | f872a2af116e5e9cdf80efd2313818200b204a04 (patch) | |
tree | 27297535ae6b995af1641ed1a219ab8ade6f5ef3 /OpenSim | |
parent | Handle checking of line starting "*" wildcard for whitelist patterns (diff) | |
download | opensim-SC_OLD-f872a2af116e5e9cdf80efd2313818200b204a04.zip opensim-SC_OLD-f872a2af116e5e9cdf80efd2313818200b204a04.tar.gz opensim-SC_OLD-f872a2af116e5e9cdf80efd2313818200b204a04.tar.bz2 opensim-SC_OLD-f872a2af116e5e9cdf80efd2313818200b204a04.tar.xz |
add missing regionstore migration file for new fields. D'oh!
this should enable persistence now
Diffstat (limited to 'OpenSim')
-rw-r--r-- | OpenSim/Data/SQLite/Resources/020_RegionStore.sql | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Data/SQLite/Resources/020_RegionStore.sql b/OpenSim/Data/SQLite/Resources/020_RegionStore.sql new file mode 100644 index 0000000..39cb752 --- /dev/null +++ b/OpenSim/Data/SQLite/Resources/020_RegionStore.sql | |||
@@ -0,0 +1,6 @@ | |||
1 | BEGIN; | ||
2 | |||
3 | ALTER TABLE prims ADD COLUMN MediaURL varchar(255); | ||
4 | ALTER TABLE primshapes ADD COLUMN Media TEXT; | ||
5 | |||
6 | COMMIT; \ No newline at end of file | ||