mirror of
https://github.com/standardebooks/web.git
synced 2025-07-21 06:45:14 -04:00
Fix SQL definition
This commit is contained in:
parent
ec0b81817d
commit
b3a9d86828
1 changed files with 1 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
CREATE TABLE IF NOT EXISTS `Tags` (
|
||||
`TagId` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`Name` varchar(255) NOT NULL,
|
||||
`UrlName` varchar(255) NULL,
|
||||
`UrlName` varchar(255) NOT NULL,
|
||||
`Type` enum('artwork', 'ebook') DEFAULT 'artwork',
|
||||
PRIMARY KEY (`TagId`),
|
||||
KEY `index1` (`Name`),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue