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;