mirror of
https://github.com/standardebooks/web.git
synced 2025-07-21 23:04:57 -04:00
Add support for alternate spellings in new artwork form
This commit is contained in:
parent
6c647f7371
commit
51672e7177
3 changed files with 15 additions and 9 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue