From 7fb593af8cff15f6d06e92a9404dcd30f90f60b2 Mon Sep 17 00:00:00 2001 From: Mouse Reeve Date: Thu, 29 Oct 2020 16:48:28 -0700 Subject: [PATCH] Remove status associated with import --- .../0058_remove_importjob_import_status.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 bookwyrm/migrations/0058_remove_importjob_import_status.py diff --git a/bookwyrm/migrations/0058_remove_importjob_import_status.py b/bookwyrm/migrations/0058_remove_importjob_import_status.py new file mode 100644 index 00000000..61f41546 --- /dev/null +++ b/bookwyrm/migrations/0058_remove_importjob_import_status.py @@ -0,0 +1,17 @@ +# Generated by Django 3.0.7 on 2020-10-29 23:48 + +from django.db import migrations + + +class Migration(migrations.Migration): + + dependencies = [ + ('bookwyrm', '0057_auto_20201026_2131'), + ] + + operations = [ + migrations.RemoveField( + model_name='importjob', + name='import_status', + ), + ]