Add default author aliases as empty list.

Fixes null constraint trying to rebuilddb.
This commit is contained in:
Adam Kelly
2020-03-08 16:26:42 +00:00
parent f714b961f2
commit 8618f20893
2 changed files with 20 additions and 1 deletions

View File

@ -79,6 +79,6 @@ class Author(FedireadsModel):
name = models.CharField(max_length=255)
last_name = models.CharField(max_length=255, null=True)
first_name = models.CharField(max_length=255, null=True)
aliases = ArrayField(models.CharField(max_length=255), blank=True)
aliases = ArrayField(models.CharField(max_length=255), blank=True, default=list)
bio = models.TextField(null=True, blank=True)