POSTGRES: Update database migrations to be in accordance with MySQL table definitions. Prerequisite for fixing PGSQLSimulationdata

Signed-off-by: Kevin Cozens <kevin@ve3syb.ca>  (mantis #7846)
This commit is contained in:
Geir Nøklebye
2016-03-16 15:17:38 +01:00
committed by Kevin Cozens
parent b418033915
commit 7aa3d4256e
3 changed files with 39 additions and 1 deletions

View File

@@ -153,3 +153,11 @@ BEGIN;
ALTER TABLE usersettings ALTER COLUMN imviaemail SET DATA TYPE boolean USING CASE WHEN false THEN false ELSE true END;
COMMIT;
:VERSION 6 # -------------------------------
BEGIN TRANSACTION;
ALTER TABLE userpicks ADD "gatekeeper" varchar(255) COLLATE "default";
COMMIT;