From c7f6e248e8544200871a1bf814f34e2ee0f9d977 Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Tue, 14 Jul 2015 21:22:53 +0200 Subject: Correcting errors in previous change: MySQL needs int unsigned, not unsigned int. PGSQL has no unsigned types, changing to bigint. --- OpenSim/Data/MySQL/Resources/RegionStore.migrations | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'OpenSim/Data/MySQL') diff --git a/OpenSim/Data/MySQL/Resources/RegionStore.migrations b/OpenSim/Data/MySQL/Resources/RegionStore.migrations index 7aefadb..ac31380 100644 --- a/OpenSim/Data/MySQL/Resources/RegionStore.migrations +++ b/OpenSim/Data/MySQL/Resources/RegionStore.migrations @@ -944,7 +944,7 @@ COMMIT; BEGIN; -ALTER TABLE land CHANGE COLUMN LandFlags LandFlags unsigned default null; +ALTER TABLE land CHANGE COLUMN LandFlags LandFlags int unsigned default null; COMMIT; -- cgit v1.1