Add support for alternate spellings in new artwork form

This commit is contained in:
Alex Cabal 2024-01-15 11:42:47 -06:00
parent 6c647f7371
commit 51672e7177
3 changed files with 15 additions and 9 deletions

View file

@ -1,5 +1,6 @@
CREATE TABLE `ArtistAlternateSpellings` (
`ArtistId` int(10) unsigned NOT NULL,
`AlternateSpelling` varchar(255) NOT NULL,
UNIQUE KEY `idxUnique` (`ArtistId`,`AlternateSpelling`)
`Name` varchar(255) NOT NULL,
`UrlName` varchar(255) NOT NULL,
UNIQUE KEY `idxUnique` (`ArtistId`,`Name`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;