1
0
Fork 0

Merge pull request #2606 from jaschaurbach/author_website

Add Website to author
This commit is contained in:
Mouse Reeve 2023-01-19 12:08:01 -08:00 committed by GitHub
commit 3e969bb349
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 41 additions and 1 deletions

View file

@ -25,6 +25,10 @@ class Author(BookDataModel):
isfdb = fields.CharField(
max_length=255, blank=True, null=True, deduplication_field=True
)
website = fields.CharField(
max_length=255, blank=True, null=True, deduplication_field=True
)
# idk probably other keys would be useful here?
born = fields.DateTimeField(blank=True, null=True)
died = fields.DateTimeField(blank=True, null=True)