Merge pull request #4443 from FinnStutzenstein/countdownMigrationFix

Fixed countdown model
This commit is contained in:
Finn Stutzenstein 2019-03-01 12:32:43 +01:00 committed by GitHub
commit 94cd032f79
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,7 @@ class Countdown(RESTModelMixin, models.Model):
access_permissions = CountdownAccessPermissions()
title = models.CharField(max_length=256, unique=True, default="")
title = models.CharField(max_length=256, unique=True)
description = models.CharField(max_length=256, blank=True)