Fix mistake in upgrade SQL

This commit is contained in:
Skylar Ittner 2019-02-11 16:25:11 -07:00
parent 04702f6090
commit 61acc9710b

View File

@ -41,7 +41,7 @@ CREATE TABLE IF NOT EXISTS `apppasswords` (
INDEX `fk_apppasswords_accounts1_idx` (`uid` ASC),
CONSTRAINT `fk_apppasswords_accounts1`
FOREIGN KEY (`uid`)
REFERENCES `accounthub`.`accounts` (`uid`)
REFERENCES `accounts` (`uid`)
ON DELETE NO ACTION
ON UPDATE NO ACTION)
ENGINE = InnoDB