Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: updated migration order to match master for upcoming merge #2742

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions backend/api/migrations/0010_merge_20230830_2141.py

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ class Migration(migrations.Migration):
Attaches the functions for the migrations
"""
dependencies = [
('api', '0005_cachedpages'),
('api', '0013_create_missing_rescinded_history_records'),
]

operations = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def remove_administrative_adjustment(apps, schema_editor):
class Migration(migrations.Migration):

dependencies = [
('api', '0006_new_label_changes'),
('api', '0014_new_label_changes'),
]

operations = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
class Migration(migrations.Migration):

dependencies = [
('api', '0007_add_admin_adjustment_20230808_1803'),
('api', '0015_add_admin_adjustment_20230808_1803'),
]

operations = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
class Migration(migrations.Migration):

dependencies = [
('api', '0008_alter_credittrade_number_of_credits'),
('api', '0016_alter_credittrade_number_of_credits'),
]
# apply migration only to test database
if connection.settings_dict['NAME'] == 'test_tfrs':
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def update_report_fields(apps, schema_editor):

class Migration(migrations.Migration):
dependencies = [
('api', '0013_create_missing_rescinded_history_records'),
('api', '0017_alter_compliace_report_history_status'),
]

operations = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ class Migration(migrations.Migration):
Attaches the update function to the migration operations
"""
dependencies = [
('api', '0014_report_history_grouping'),
('api', '0018_report_history_grouping'),
]

operations = [
Expand Down