Add default author aliases as empty list.
Fixes null constraint trying to rebuilddb.
This commit is contained in:
parent
f714b961f2
commit
8618f20893
2 changed files with 20 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue