mirror of
https://github.com/standardebooks/web.git
synced 2025-07-12 17:42:29 -04:00
Add accounting bit to Collections table
This commit is contained in:
parent
79fdc8c20f
commit
cb1cfc8c21
2 changed files with 3 additions and 0 deletions
|
@ -3,6 +3,7 @@ CREATE TABLE IF NOT EXISTS `Collections` (
|
|||
`Name` varchar(255) NOT NULL,
|
||||
`UrlName` varchar(255) NOT NULL,
|
||||
`Type` enum('series', 'set') NULL,
|
||||
`ArePlaceholdersComplete` tinyint(1) NOT NULL DEFAULT 0,
|
||||
PRIMARY KEY (`CollectionId`),
|
||||
UNIQUE KEY `idxUnique` (`UrlName`)
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue