diff options
Diffstat (limited to 'pgcommitfest/commitfest/models.py')
-rw-r--r-- | pgcommitfest/commitfest/models.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pgcommitfest/commitfest/models.py b/pgcommitfest/commitfest/models.py index 45f3762..5936b65 100644 --- a/pgcommitfest/commitfest/models.py +++ b/pgcommitfest/commitfest/models.py @@ -80,10 +80,10 @@ class Patch(models.Model, DiffableModel): commitfests = models.ManyToManyField(CommitFest, through='PatchOnCommitFest') # If there is a wiki page discussing this patch - wikilink = models.URLField(blank=True, null=True, default='') + wikilink = models.URLField(blank=True, null=False, default='') # If there is a git repo about this patch - gitlink = models.URLField(blank=True, null=True, default='') + gitlink = models.URLField(blank=True, null=False, default='') # Mailthreads are ManyToMany in the other direction #mailthreads_set = ... |