mirror of
https://github.com/standardebooks/web.git
synced 2025-07-09 16:20:27 -04:00
Add 'awaiting review' and 'reviewed' project statuses that update from GitHub; allow project owners to update their project statuses
This commit is contained in:
parent
b48f3a5798
commit
6378d687d8
12 changed files with 204 additions and 21 deletions
|
@ -1,6 +1,6 @@
|
|||
CREATE TABLE IF NOT EXISTS `Projects` (
|
||||
`ProjectId` int(10) unsigned NOT NULL AUTO_INCREMENT,
|
||||
`Status` enum('in_progress','stalled','completed','abandoned') NOT NULL DEFAULT 'in_progress',
|
||||
`Status` enum('in_progress','awaiting_review','reviewed','stalled','completed','abandoned') NOT NULL DEFAULT 'in_progress',
|
||||
`EbookId` int(11) NOT NULL,
|
||||
`ProducerName` varchar(151) NOT NULL DEFAULT '',
|
||||
`ProducerEmail` varchar(80) DEFAULT NULL,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue