diff --git a/ram/bookshelf/migrations/0009_alter_bookimage_image.py b/ram/bookshelf/migrations/0009_alter_bookimage_image.py index 7ec5d09..df3e9e8 100644 --- a/ram/bookshelf/migrations/0009_alter_bookimage_image.py +++ b/ram/bookshelf/migrations/0009_alter_bookimage_image.py @@ -31,19 +31,21 @@ class Migration(migrations.Migration): ("bookshelf", "0008_alter_author_options_alter_publisher_options"), ] + # Migration is stale and shouldn't be used since model hes been heavily + # modified since then. Leaving it here for reference. operations = [ - migrations.AlterField( - model_name="bookimage", - name="image", - field=models.ImageField( - blank=True, - null=True, - storage=ram.utils.DeduplicatedStorage, - upload_to=bookshelf.models.book_image_upload, - ), - ), - migrations.RunPython( - move_images, - reverse_code=migrations.RunPython.noop - ), + # migrations.AlterField( + # model_name="bookimage", + # name="image", + # field=models.ImageField( + # blank=True, + # null=True, + # storage=ram.utils.DeduplicatedStorage, + # upload_to=bookshelf.models.book_image_upload, + # ), + # ), + # migrations.RunPython( + # move_images, + # reverse_code=migrations.RunPython.noop + # ), ]