Skip to content

Commit

Permalink
Actually fix migration
Browse files Browse the repository at this point in the history
  • Loading branch information
jayvarner committed Aug 9, 2024
1 parent 392698a commit 8d27c98
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion readux_ingest_ecds/migrations/0004_s3ingest.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
import uuid

ImageServer = settings.IIIF_IMAGE_SERVER_MODEL
Collection = settings.IIIF_COLLECTION_MODEL


class Migration(migrations.Migration):
Expand Down Expand Up @@ -53,7 +54,7 @@ class Migration(migrations.Migration):
models.ManyToManyField(
blank=True,
help_text="Optional: Collections to attach to ALL volumes ingested in this form.",
to="iiif.Collection",
to=Collection,
),
),
(
Expand Down

0 comments on commit 8d27c98

Please sign in to comment.