diff options
author | Justin Clark-Casey (justincc) | 2014-03-26 20:42:53 +0000 |
---|---|---|
committer | Justin Clark-Casey (justincc) | 2014-03-26 20:42:53 +0000 |
commit | 7a4c5b067de8d5904db6ef9425697f0d529b9147 (patch) | |
tree | 94feb92bfa5a6da74b6cc3be1900f51415e240b6 /OpenSim/Data/MSSQL/Resources | |
parent | Merge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff) | |
download | opensim-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/MSSQL/Resources')
-rw-r--r-- | OpenSim/Data/MSSQL/Resources/EstateStore.migrations | 8 |
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 | ||
332 | COMMIT | 332 | COMMIT |
333 | 333 | ||
334 | :VERSION 10 | ||
334 | 335 | ||
336 | BEGIN transaction | ||
337 | |||
338 | ALTER TABLE estate_settings ADD AllowLandmark tinyint NOT NULL default 1; | ||
339 | ALTER TABLE estate_settings ADD AllowParcelChanges tinyint NOT NULL default 1; | ||
340 | ALTER TABLE estate_settings ADD AllowSetHome tinyint NOT NULL default 1; | ||
341 | |||
342 | COMMIT; \ No newline at end of file | ||