mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-25 02:51:13 +00:00
Fix migration formatting
This commit is contained in:
parent
797d5cb508
commit
c6ca547d58
1 changed files with 7 additions and 7 deletions
|
@ -6,22 +6,22 @@ from django.db import migrations
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('bookwyrm', '0199_merge_20240326_1217'),
|
||||
("bookwyrm", "0199_merge_20240326_1217"),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='addfiletotar',
|
||||
name='childjob_ptr',
|
||||
model_name="addfiletotar",
|
||||
name="childjob_ptr",
|
||||
),
|
||||
migrations.RemoveField(
|
||||
model_name='addfiletotar',
|
||||
name='parent_export_job',
|
||||
model_name="addfiletotar",
|
||||
name="parent_export_job",
|
||||
),
|
||||
migrations.DeleteModel(
|
||||
name='AddBookToUserExportJob',
|
||||
name="AddBookToUserExportJob",
|
||||
),
|
||||
migrations.DeleteModel(
|
||||
name='AddFileToTar',
|
||||
name="AddFileToTar",
|
||||
),
|
||||
]
|
||||
|
|
Loading…
Reference in a new issue