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

unsigned int. PGSQL has no unsigned types, changing to bigint.
This commit is contained in:
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;