Added migration for UserAccounts table.

avinationmerge
Kevin Cozens 2015-09-15 21:50:55 -04:00
parent 2bd7bbd1cb
commit 8c5a2e1e70
1 changed files with 7 additions and 0 deletions

View File

@ -44,4 +44,11 @@ ALTER TABLE UserAccounts ADD COLUMN UserTitle varchar(64) NOT NULL DEFAULT '';
COMMIT;
:VERSION 5 # -------------------------
BEGIN;
ALTER TABLE `UserAccounts` ADD `active` INT NOT NULL DEFAULT '1';
COMMIT;