Correct the case of the UserAccounts table name in migration statement for display names. The Table is actually MixedCase where the original statement was using all lower case.

This commit is contained in:
Mike Dickson 2024-09-22 00:39:01 -04:00
parent 48199f0596
commit 45232b2f31

View file

@ -34,7 +34,7 @@ COMMIT;
BEGIN;
ALTER TABLE `useraccounts`
ALTER TABLE `UserAccounts`
ADD COLUMN `DisplayName` VARCHAR(31) NULL AFTER `active`,
ADD COLUMN `NameChanged` INT NULL DEFAULT 0 AFTER `DisplayName`;