X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/94df6dd78db144202338eae9b4e90af44b0058c2..661a128f3a3f7bcaac5a33c7f00eb7e790f469d5:/apps/api/models.py?ds=inline

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())