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!
0.8.0.3
Justin Clark-Casey (justincc) 2014-03-26 20:42:53 +00:00
parent 6c447f892e
commit 7a4c5b067d
1 changed files with 8 additions and 0 deletions

View File

@ -331,4 +331,12 @@ ALTER TABLE dbo.estate_map ADD CONSTRAINT
COMMIT
:VERSION 10
BEGIN transaction
ALTER TABLE estate_settings ADD AllowLandmark tinyint NOT NULL default 1;
ALTER TABLE estate_settings ADD AllowParcelChanges tinyint NOT NULL default 1;
ALTER TABLE estate_settings ADD AllowSetHome tinyint NOT NULL default 1;
COMMIT;