Adds inventaire id to book data model

This commit is contained in:
Mouse Reeve
2021-04-06 10:40:39 -07:00
parent f30d05acfc
commit 295842badd
2 changed files with 11 additions and 6 deletions

View File

@ -19,6 +19,9 @@ class BookDataModel(ObjectMixin, BookWyrmModel):
openlibrary_key = fields.CharField(
max_length=255, blank=True, null=True, deduplication_field=True
)
inventaire_id = fields.CharField(
max_length=255, blank=True, null=True, deduplication_field=True
)
librarything_key = fields.CharField(
max_length=255, blank=True, null=True, deduplication_field=True
)