Added migration for UserAccounts table.

This commit is contained in:
Kevin Cozens
2015-09-15 21:50:55 -04:00
parent 2bd7bbd1cb
commit 8c5a2e1e70

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;