web/config/sql/se/ArtistAlternateSpellings.sql
Mike Colagrosso 6a5c05511a Add cover art database
Co-authored-by: Job Curtis <job.curtis@gmail.com>
Co-authored-by: Alex Cabal <alex@standardebooks.org>
2024-01-03 19:14:04 -06:00

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;