mirror of
https://github.com/standardebooks/web.git
synced 2025-07-21 06:45:14 -04:00
Add cover art database
Co-authored-by: Job Curtis <job.curtis@gmail.com> Co-authored-by: Alex Cabal <alex@standardebooks.org>
This commit is contained in:
parent
74f747df76
commit
6a5c05511a
92 changed files with 3174 additions and 146 deletions
10
config/sql/se/Artists.sql
Normal file
10
config/sql/se/Artists.sql
Normal file
|
@ -0,0 +1,10 @@
|
|||
CREATE TABLE `Artists` (
|
||||
`ArtistId` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`Name` varchar(191) NOT NULL,
|
||||
`UrlName` varchar(255) NOT NULL,
|
||||
`DeathYear` smallint unsigned NULL,
|
||||
`Created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||
`Updated` timestamp NOT NULL,
|
||||
PRIMARY KEY (`ArtistId`),
|
||||
UNIQUE KEY `idxUnique` (`UrlName`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
Loading…
Add table
Add a link
Reference in a new issue