We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a0c311 commit d901303Copy full SHA for d901303
pgcommitfest/commitfest/models.py
@@ -80,10 +80,10 @@ class Patch(models.Model, DiffableModel):
80
commitfests = models.ManyToManyField(CommitFest, through='PatchOnCommitFest')
81
82
# If there is a wiki page discussing this patch
83
- wikilink = models.URLField(blank=True, null=True, default='')
+ wikilink = models.URLField(blank=True, null=False, default='')
84
85
# If there is a git repo about this patch
86
- gitlink = models.URLField(blank=True, null=True, default='')
+ gitlink = models.URLField(blank=True, null=False, default='')
87
88
# Mailthreads are ManyToMany in the other direction
89
#mailthreads_set = ...
0 commit comments