From 482daacea7459081075931ffab6324675e07cbe0 Mon Sep 17 00:00:00 2001 From: Melanie Thielker Date: Tue, 22 Mar 2016 20:55:21 +0100 Subject: [PATCH] Add migration to add "active" column on PGSQL. UNTESTED! --- OpenSim/Data/PGSQL/Resources/UserAccount.migrations | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/OpenSim/Data/PGSQL/Resources/UserAccount.migrations b/OpenSim/Data/PGSQL/Resources/UserAccount.migrations index c785463325..31358fa694 100644 --- a/OpenSim/Data/PGSQL/Resources/UserAccount.migrations +++ b/OpenSim/Data/PGSQL/Resources/UserAccount.migrations @@ -48,4 +48,10 @@ ALTER TABLE UserAccounts ADD "UserTitle" varchar(64) NOT NULL DEFAULT ''; COMMIT; +:VERSION 5 +BEGIN TRANSACTION; + +ALTER TABLE UserAccounts ADD "active" integer NOT NULL DEFAULT 1; + +COMMIT;