X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/94df6dd78db144202338eae9b4e90af44b0058c2..084544e4f7c9269b1445a9e5109fa641a3e1aaac:/apps/api/models.py diff --git a/apps/api/models.py b/apps/api/models.py index 8681990e..cd9a3958 100644 --- a/apps/api/models.py +++ b/apps/api/models.py @@ -41,7 +41,7 @@ class PullRequest(models.Model): # revision to be merged into the main branch source_revision = models.CharField(max_length=40, unique=True) - target_revision = models.CharField(max_length=40, required=False) + target_revision = models.CharField(max_length=40, blank=True) # current status status = models.CharField(max_length=1, choices=REQUEST_STATUSES.items())