Add migration to add "active" column on PGSQL. UNTESTED!

LSLKeyTest
Melanie Thielker 2016-03-22 20:55:21 +01:00
parent de109dbe92
commit 482daacea7
1 changed files with 6 additions and 0 deletions

View File

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