aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources
diff options
context:
space:
mode:
authorMelanie2012-01-30 16:22:21 +0000
committerMelanie2012-01-30 16:22:21 +0000
commit3de534896efe4014f50b03624d3b9db82cd92cae (patch)
treeff35c3deffdc26b10f34716651b9a9f365cc1b5e /OpenSim/Data/MySQL/Resources
parentFix llEdgeOfWorld functionality - see mantis http://opensimulator.org/mantis/... (diff)
downloadopensim-SC_OLD-3de534896efe4014f50b03624d3b9db82cd92cae.zip
opensim-SC_OLD-3de534896efe4014f50b03624d3b9db82cd92cae.tar.gz
opensim-SC_OLD-3de534896efe4014f50b03624d3b9db82cd92cae.tar.bz2
opensim-SC_OLD-3de534896efe4014f50b03624d3b9db82cd92cae.tar.xz
Add ParcelImageID to RegionSettings so we can have that overlay.
Warning: Contains a Migration. Warning: May contain nuts.
Diffstat (limited to 'OpenSim/Data/MySQL/Resources')
-rw-r--r--OpenSim/Data/MySQL/Resources/RegionStore.migrations6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/RegionStore.migrations b/OpenSim/Data/MySQL/Resources/RegionStore.migrations
index 720e200..f9b5737 100644
--- a/OpenSim/Data/MySQL/Resources/RegionStore.migrations
+++ b/OpenSim/Data/MySQL/Resources/RegionStore.migrations
@@ -857,3 +857,9 @@ CREATE TABLE IF NOT EXISTS `spawn_points` (
857ALTER TABLE `regionsettings` ADD COLUMN `TelehubObject` varchar(36) NOT NULL; 857ALTER TABLE `regionsettings` ADD COLUMN `TelehubObject` varchar(36) NOT NULL;
858COMMIT; 858COMMIT;
859 859
860:VERSION 40 #---------------- Parcels for sale
861
862BEGIN;
863ALTER TABLE `regionsettings` ADD COLUMN `parcel_tile_ID` char(36) NOT NULL DEFAULT '00000000-0000-0000-0000-000000000000';
864COMMIT;
865