mirror of
https://github.com/standardebooks/web.git
synced 2025-07-08 15:50:29 -04:00
Allow VCS URLs to be null in projects
This commit is contained in:
parent
d902074285
commit
7a3c7ad503
12 changed files with 94 additions and 36 deletions
|
@ -5,7 +5,7 @@ CREATE TABLE IF NOT EXISTS `Projects` (
|
|||
`ProducerName` varchar(151) NOT NULL DEFAULT '',
|
||||
`ProducerEmail` varchar(80) DEFAULT NULL,
|
||||
`DiscussionUrl` varchar(255) DEFAULT NULL,
|
||||
`VcsUrl` varchar(255) NOT NULL,
|
||||
`VcsUrl` varchar(255) DEFAULT NULL,
|
||||
`Created` timestamp NOT NULL DEFAULT current_timestamp(),
|
||||
`Updated` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
|
||||
`Started` datetime NOT NULL,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue