aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2014-03-26 20:42:53 +0000
committerJustin Clark-Casey (justincc)2014-03-26 20:42:53 +0000
commit7a4c5b067de8d5904db6ef9425697f0d529b9147 (patch)
tree94feb92bfa5a6da74b6cc3be1900f51415e240b6 /OpenSim/Data
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-7a4c5b067de8d5904db6ef9425697f0d529b9147.zip
opensim-SC_OLD-7a4c5b067de8d5904db6ef9425697f0d529b9147.tar.gz
opensim-SC_OLD-7a4c5b067de8d5904db6ef9425697f0d529b9147.tar.bz2
opensim-SC_OLD-7a4c5b067de8d5904db6ef9425697f0d529b9147.tar.xz
Add MSSQL EstateStore.migrations VERSION 10 transaction to add AllowLandMark, AllowParcelChanges and AllowSetHome columns to estate_settings table.
Taken from http://opensimulator.org/mantis/view.php?id=7074 by LuciusSirnah. Thanks!
Diffstat (limited to 'OpenSim/Data')
-rw-r--r--OpenSim/Data/MSSQL/Resources/EstateStore.migrations8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Data/MSSQL/Resources/EstateStore.migrations b/OpenSim/Data/MSSQL/Resources/EstateStore.migrations
index 64b2d2b..b5b1b18 100644
--- a/OpenSim/Data/MSSQL/Resources/EstateStore.migrations
+++ b/OpenSim/Data/MSSQL/Resources/EstateStore.migrations
@@ -331,4 +331,12 @@ ALTER TABLE dbo.estate_map ADD CONSTRAINT
331 331
332COMMIT 332COMMIT
333 333
334:VERSION 10
334 335
336BEGIN transaction
337
338ALTER TABLE estate_settings ADD AllowLandmark tinyint NOT NULL default 1;
339ALTER TABLE estate_settings ADD AllowParcelChanges tinyint NOT NULL default 1;
340ALTER TABLE estate_settings ADD AllowSetHome tinyint NOT NULL default 1;
341
342COMMIT; \ No newline at end of file