mirror of
https://github.com/standardebooks/web.git
synced 2025-07-08 15:50:29 -04:00
6 lines
231 B
SQL
6 lines
231 B
SQL
CREATE TABLE `ArtistAlternateNames` (
|
|
`ArtistId` int(10) unsigned NOT NULL,
|
|
`Name` varchar(255) NOT NULL,
|
|
`UrlName` varchar(255) NOT NULL,
|
|
UNIQUE KEY `idxUnique` (`ArtistId`,`Name`)
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|