diff options
author | Melanie Thielker | 2015-07-23 01:59:33 +0200 |
---|---|---|
committer | Melanie Thielker | 2015-07-23 01:59:33 +0200 |
commit | 73421922234a8399b3e10deafb87b6eca2c2b8ee (patch) | |
tree | 43f471f31529a55b3157ab2a0bafb4a5f556029b /OpenSim/Data/PGSQL | |
parent | Added locking to HypergridLinker, to prevent problems if multiple linking req... (diff) | |
download | opensim-SC-73421922234a8399b3e10deafb87b6eca2c2b8ee.zip opensim-SC-73421922234a8399b3e10deafb87b6eca2c2b8ee.tar.gz opensim-SC-73421922234a8399b3e10deafb87b6eca2c2b8ee.tar.bz2 opensim-SC-73421922234a8399b3e10deafb87b6eca2c2b8ee.tar.xz |
Add quotes aroung LandFlags as PGSQL seems to choke on the word when
it's bare.
Diffstat (limited to 'OpenSim/Data/PGSQL')
-rw-r--r-- | OpenSim/Data/PGSQL/Resources/RegionStore.migrations | 2 |
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 | ||
1158 | BEGIN TRANSACTION; | 1158 | BEGIN TRANSACTION; |
1159 | 1159 | ||
1160 | ALTER TABLE land ALTER LandFlags TYPE bigint; | 1160 | ALTER TABLE land ALTER "LandFlags" TYPE bigint; |
1161 | 1161 | ||
1162 | COMMIT; | 1162 | COMMIT; |