aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Data/PGSQL/Resources/RegionStore.migrations
diff options
context:
space:
mode:
authorMelanie Thielker2015-07-23 01:59:33 +0200
committerMelanie Thielker2015-07-23 01:59:33 +0200
commit73421922234a8399b3e10deafb87b6eca2c2b8ee (patch)
tree43f471f31529a55b3157ab2a0bafb4a5f556029b /OpenSim/Data/PGSQL/Resources/RegionStore.migrations
parentAdded locking to HypergridLinker, to prevent problems if multiple linking req... (diff)
downloadopensim-SC_OLD-73421922234a8399b3e10deafb87b6eca2c2b8ee.zip
opensim-SC_OLD-73421922234a8399b3e10deafb87b6eca2c2b8ee.tar.gz
opensim-SC_OLD-73421922234a8399b3e10deafb87b6eca2c2b8ee.tar.bz2
opensim-SC_OLD-73421922234a8399b3e10deafb87b6eca2c2b8ee.tar.xz
Add quotes aroung LandFlags as PGSQL seems to choke on the word when
it's bare.
Diffstat (limited to '')
-rw-r--r--OpenSim/Data/PGSQL/Resources/RegionStore.migrations2
1 files changed, 1 insertions, 1 deletions
diff --git a/OpenSim/Data/PGSQL/Resources/RegionStore.migrations b/OpenSim/Data/PGSQL/Resources/RegionStore.migrations
index d3277f2..1284ce0 100644
--- a/OpenSim/Data/PGSQL/Resources/RegionStore.migrations
+++ b/OpenSim/Data/PGSQL/Resources/RegionStore.migrations
@@ -1157,6 +1157,6 @@ VERSION 41 #-- Change Landlags to bigint
1157 1157
1158BEGIN TRANSACTION; 1158BEGIN TRANSACTION;
1159 1159
1160ALTER TABLE land ALTER LandFlags TYPE bigint; 1160ALTER TABLE land ALTER "LandFlags" TYPE bigint;
1161 1161
1162COMMIT; 1162COMMIT;