List artwork by artist via /artworks/<artist-name>

This commit is contained in:
Mike Colagrosso 2024-01-22 21:24:01 -07:00 committed by Alex Cabal
parent 780be15ed0
commit cad2f5f730
8 changed files with 63 additions and 12 deletions

View file

@ -22,5 +22,6 @@ CREATE TABLE `Artworks` (
`Notes` TEXT NULL DEFAULT NULL
PRIMARY KEY (`ArtworkId`),
KEY `index1` (`Status`),
KEY `index2` (`UrlName`)
KEY `index2` (`UrlName`),
KEY `index3` (`ArtistId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;