Add a handful of new region flags and a small migration
parent
e9d376972f
commit
0d5f182c02
|
@ -72,6 +72,9 @@ namespace OpenSim.Data
|
||||||
RegionOnline = 4, // Set when a region comes online, unset when it unregisters and DeleteOnUnregister is false
|
RegionOnline = 4, // Set when a region comes online, unset when it unregisters and DeleteOnUnregister is false
|
||||||
NoDirectLogin = 8, // Region unavailable for direct logins (by name)
|
NoDirectLogin = 8, // Region unavailable for direct logins (by name)
|
||||||
Persistent = 16, // Don't remove on unregister
|
Persistent = 16, // Don't remove on unregister
|
||||||
LockedOut = 32 // Don't allow registration
|
LockedOut = 32, // Don't allow registration
|
||||||
|
NoMove = 64, // Don't allow moving this region
|
||||||
|
Reservation = 128, // This is an inactive reservation
|
||||||
|
Authenticate = 256 // Require authentication
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,6 @@
|
||||||
|
BEGIN;
|
||||||
|
|
||||||
|
ALTER TABLE `regions` ADD COLUMN `PrincipalID` char(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000';
|
||||||
|
|
||||||
|
COMMIT;
|
||||||
|
|
Loading…
Reference in New Issue