Fix: replace-all now handles the case where new string contains the old one as a...
[redakcja.git] / apps / cover / models.py
index 5574f34..d4432c2 100644 (file)
@@ -20,7 +20,7 @@ class Image(models.Model):
     author = models.CharField(max_length=255, verbose_name=_('author'))
     license_name = models.CharField(max_length=255, verbose_name=_('license name'))
     license_url = models.URLField(max_length=255, blank=True, verbose_name=_('license URL'))
-    source_url = models.URLField(verbose_name=_('source URL'))
+    source_url = models.URLField(verbose_name=_('source URL'), null = True)
     download_url = models.URLField(unique=True, verbose_name=_('image download URL'), null = True)
     file = models.ImageField(upload_to='cover/image', editable=True, verbose_name=_('file'))