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/MySQL/Resources/EstateStore.migrations | |
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/MySQL/Resources/EstateStore.migrations')
-rw-r--r-- | OpenSim/Data/MySQL/Resources/EstateStore.migrations | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/EstateStore.migrations b/OpenSim/Data/MySQL/Resources/EstateStore.migrations index df82a2e..2d1c2b5 100644 --- a/OpenSim/Data/MySQL/Resources/EstateStore.migrations +++ b/OpenSim/Data/MySQL/Resources/EstateStore.migrations | |||
@@ -77,5 +77,11 @@ BEGIN; | |||
77 | ALTER TABLE estate_settings AUTO_INCREMENT = 100; | 77 | ALTER TABLE estate_settings AUTO_INCREMENT = 100; |
78 | COMMIT; | 78 | COMMIT; |
79 | 79 | ||
80 | :VERSION 33 #--------------------- | ||
80 | 81 | ||
82 | BEGIN; | ||
83 | ALTER TABLE estate_settings ADD COLUMN `AllowLandmark` tinyint(4) NOT NULL default '1'; | ||
84 | ALTER TABLE estate_settings ADD COLUMN `AllowParcelChanges` tinyint(4) NOT NULL default '1'; | ||
85 | ALTER TABLE estate_settings ADD COLUMN `AllowSetHome` tinyint(4) NOT NULL default '1'; | ||
86 | COMMIT; | ||
81 | 87 | ||