mirror of
https://github.com/standardebooks/web.git
synced 2025-07-12 17:42:29 -04:00
Co-authored-by: Job Curtis <job.curtis@gmail.com> Co-authored-by: Alex Cabal <alex@standardebooks.org>
5 lines
226 B
SQL
5 lines
226 B
SQL
CREATE TABLE `ArtistAlternateSpellings` (
|
|
`ArtistId` int(10) unsigned NOT NULL,
|
|
`AlternateSpelling` varchar(255) NOT NULL,
|
|
UNIQUE KEY `idxUnique` (`ArtistId`,`AlternateSpelling`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|