1
0
Fork 0

Revert "Add Website field to author"

This commit is contained in:
Mouse Reeve 2023-01-11 19:21:40 -08:00 committed by GitHub
parent 60f3f8fcc0
commit dd2b166382
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 3 additions and 54 deletions

View file

@ -17,15 +17,12 @@ class Author(BookDataModel):
max_length=255, blank=True, null=True, deduplication_field=True
)
isni = fields.CharField(
max_length=19, blank=True, null=True, deduplication_field=True
max_length=255, blank=True, null=True, deduplication_field=True
)
gutenberg_id = fields.CharField(
max_length=255, blank=True, null=True, deduplication_field=True
)
isfdb = fields.CharField(
max_length=6, 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?