-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3680b36
commit 722dcbb
Showing
4 changed files
with
53 additions
and
107 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
37 changes: 37 additions & 0 deletions
37
...nd/importer/migrations/0004_alter_importjob_options_remove_importjob_csv_file_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Generated by Django 5.1.2 on 2024-10-31 11:01 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("importer", "0003_alter_importjob_csv_file"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name="importjob", | ||
options={}, | ||
), | ||
migrations.RemoveField( | ||
model_name="importjob", | ||
name="csv_file", | ||
), | ||
migrations.RemoveField( | ||
model_name="importjob", | ||
name="has_header", | ||
), | ||
migrations.RemoveField( | ||
model_name="importjob", | ||
name="import_type", | ||
), | ||
migrations.RemoveField( | ||
model_name="importjob", | ||
name="status", | ||
), | ||
migrations.RemoveField( | ||
model_name="importjob", | ||
name="uploaded_at", | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Generated by Django 5.1.2 on 2024-10-31 11:02 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("importer", "0004_alter_importjob_options_remove_importjob_csv_file_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.DeleteModel( | ||
name="ImportJob", | ||
), | ||
] |
This file was deleted.
Oops, something went wrong.