From 7b571a928c2e32ee41a59e5c7784932e1ab823bb Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Tue, 14 Jul 2015 21:16:25 +0200 Subject: Mantis #7629: Change LandFlags column to unsigned. Thanks, Jim! --- OpenSim/Data/PGSQL/Resources/RegionStore.migrations | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'OpenSim/Data/PGSQL/Resources/RegionStore.migrations') diff --git a/OpenSim/Data/PGSQL/Resources/RegionStore.migrations b/OpenSim/Data/PGSQL/Resources/RegionStore.migrations index 1e33027..3852e3a 100644 --- a/OpenSim/Data/PGSQL/Resources/RegionStore.migrations +++ b/OpenSim/Data/PGSQL/Resources/RegionStore.migrations @@ -1152,3 +1152,11 @@ ALTER TABLE regionwindlight ALTER draw_classic_clouds TYPE bool USING CASE WHEN ALTER TABLE regionwindlight ALTER COLUMN draw_classic_clouds SET DEFAULT FALSE; COMMIT; + +VERSION 41 #-- Change Landlags to unsigned + +BEGIN TRANSACTION; + +ALTER TABLE land ALTER LandFlags TYPE unsigned; + +COMMIT; -- cgit v1.1