diff options
author | Diva Canto | 2013-05-11 07:15:31 -0700 |
---|---|---|
committer | Diva Canto | 2013-05-11 07:15:31 -0700 |
commit | ab4d5304621c53555c28d05b3e801fba17260aba (patch) | |
tree | 070b15dea6bf887e21fe47a725f8f445175ce908 /OpenSim/Data/SQLite/Resources | |
parent | Handle SetHome properly (diff) | |
parent | Merge branch 'master' of melanie@opensimulator.org:/var/git/opensim (diff) | |
download | opensim-SC_OLD-ab4d5304621c53555c28d05b3e801fba17260aba.zip opensim-SC_OLD-ab4d5304621c53555c28d05b3e801fba17260aba.tar.gz opensim-SC_OLD-ab4d5304621c53555c28d05b3e801fba17260aba.tar.bz2 opensim-SC_OLD-ab4d5304621c53555c28d05b3e801fba17260aba.tar.xz |
Merge branch 'master' of ssh://opensimulator.org/var/git/opensim
Diffstat (limited to 'OpenSim/Data/SQLite/Resources')
-rw-r--r-- | OpenSim/Data/SQLite/Resources/EstateStore.migrations | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/OpenSim/Data/SQLite/Resources/EstateStore.migrations b/OpenSim/Data/SQLite/Resources/EstateStore.migrations index 62f6464..0aec49b 100644 --- a/OpenSim/Data/SQLite/Resources/EstateStore.migrations +++ b/OpenSim/Data/SQLite/Resources/EstateStore.migrations | |||
@@ -86,3 +86,12 @@ begin; | |||
86 | alter table estate_settings add column DenyMinors tinyint not null default 0; | 86 | alter table estate_settings add column DenyMinors tinyint not null default 0; |
87 | 87 | ||
88 | commit; | 88 | commit; |
89 | |||
90 | :VERSION 9 | ||
91 | |||
92 | begin; | ||
93 | alter table estate_settings add column AllowLandmark tinyint not null default '1'; | ||
94 | alter table estate_settings add column AllowParcelChanges tinyint not null default '1'; | ||
95 | alter table estate_settings add column AllowSetHome tinyint not null default '1'; | ||
96 | commit; | ||
97 | |||