Remove problematic migration

This migration is dependent on the runtime configuration (.env); a structural fix will follow.
This commit is contained in:
Bart Schuurmans 2024-03-24 12:06:42 +01:00
parent 03587dfdc7
commit 69f464418d

View file

@ -1,23 +0,0 @@
# Generated by Django 3.2.25 on 2024-03-24 08:53
import bookwyrm.storage_backends
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("bookwyrm", "0197_merge_20240324_0235"),
]
operations = [
migrations.AlterField(
model_name="bookwyrmexportjob",
name="export_data",
field=models.FileField(
null=True,
storage=bookwyrm.storage_backends.ExportsS3Storage,
upload_to="",
),
),
]