Correcting errors in previous change: MySQL needs int unsigned, not

unsigned int. PGSQL has no unsigned types, changing to bigint.
0.8.2-post-fixes
Melanie Thielker 2015-07-14 21:22:53 +02:00
parent 7b571a928c
commit c7f6e248e8
2 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -1153,10 +1153,10 @@ ALTER TABLE regionwindlight ALTER COLUMN draw_classic_clouds SET DEFAULT FALSE;
COMMIT;
VERSION 41 #-- Change Landlags to unsigned
VERSION 41 #-- Change Landlags to bigint
BEGIN TRANSACTION;
ALTER TABLE land ALTER LandFlags TYPE unsigned;
ALTER TABLE land ALTER LandFlags TYPE bigint;
COMMIT;