aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/MySQL/Resources/RegionStore.migrations
diff options
context:
space:
mode:
authorMelanie Thielker2015-07-14 21:16:25 +0200
committerMelanie Thielker2015-07-14 21:16:25 +0200
commit7b571a928c2e32ee41a59e5c7784932e1ab823bb (patch)
treeaf05d6e33f83e85f8e5224dc6b0b48f3414f9176 /OpenSim/Data/MySQL/Resources/RegionStore.migrations
parentAdd config options for FSAssetService. The default is the original asset serv... (diff)
downloadopensim-SC_OLD-7b571a928c2e32ee41a59e5c7784932e1ab823bb.zip
opensim-SC_OLD-7b571a928c2e32ee41a59e5c7784932e1ab823bb.tar.gz
opensim-SC_OLD-7b571a928c2e32ee41a59e5c7784932e1ab823bb.tar.bz2
opensim-SC_OLD-7b571a928c2e32ee41a59e5c7784932e1ab823bb.tar.xz
Mantis #7629: Change LandFlags column to unsigned. Thanks, Jim!
Diffstat (limited to 'OpenSim/Data/MySQL/Resources/RegionStore.migrations')
-rw-r--r--OpenSim/Data/MySQL/Resources/RegionStore.migrations8
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Data/MySQL/Resources/RegionStore.migrations b/OpenSim/Data/MySQL/Resources/RegionStore.migrations
index a77e44d..7aefadb 100644
--- a/OpenSim/Data/MySQL/Resources/RegionStore.migrations
+++ b/OpenSim/Data/MySQL/Resources/RegionStore.migrations
@@ -940,3 +940,11 @@ ALTER TABLE prims ADD COLUMN AttachedPosZ double default 0;
940ALTER TABLE primshapes ADD COLUMN LastAttachPoint int(4) not null default '0'; 940ALTER TABLE primshapes ADD COLUMN LastAttachPoint int(4) not null default '0';
941COMMIT; 941COMMIT;
942 942
943:VERSION 50 #---- Change LandFlags to unsigned
944
945BEGIN;
946
947ALTER TABLE land CHANGE COLUMN LandFlags LandFlags unsigned default null;
948
949COMMIT;
950