Add pin column to accounts table

This commit is contained in:
Skylar Ittner 2017-12-30 11:17:24 -07:00
parent 55f3141a07
commit d3bc37b40f
2 changed files with 4 additions and 1 deletions

Binary file not shown.

View File

@ -16,4 +16,7 @@ DEFAULT CHARACTER SET = utf8;
SET FOREIGN_KEY_CHECKS = 0;
ALTER TABLE `groups`
CHANGE COLUMN `groupid` `groupid` INT(11) NOT NULL AUTO_INCREMENT;
SET FOREIGN_KEY_CHECKS = 1;
SET FOREIGN_KEY_CHECKS = 1;
ALTER TABLE `accounthub`.`accounts`
ADD COLUMN `pin` VARCHAR(10) NULL DEFAULT NULL AFTER `authsecret`;