mirror of
https://github.com/OpenSim-NGC/OpenSim-Sasquatch.git
synced 2024-11-21 14:29:10 -07:00
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:
parent
48199f0596
commit
45232b2f31
1 changed files with 1 additions and 1 deletions
|
@ -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`;
|
||||
|
||||
|
|
Loading…
Reference in a new issue