Skip to content

Commit

Permalink
Fix dependency graph issues with migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
brianhelba committed Dec 8, 2023
1 parent f81555b commit ac9303e
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class Migration(migrations.Migration):
dependencies = [
('api', '0013_add_published_status'),
('api', '0011_stagingapplication'),
]

operations = [
Expand Down
2 changes: 1 addition & 1 deletion dandiapi/api/migrations/0015_validation_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

class Migration(migrations.Migration):
dependencies = [
('api', '0014_alter_stagingapplication_skip_authorization'),
('api', '0013_add_published_status'),
]

operations = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
class Migration(migrations.Migration):
dependencies = [
('api', '0034_remove_embargoedzarrarchive_dandiset_and_more'),
('zarr', '0001_initial'),
# ('zarr', '0001_initial'),
]

operations = [
Expand Down
2 changes: 1 addition & 1 deletion dandiapi/search/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@

class Migration(migrations.Migration):
dependencies = [
('api', '0041_assetblob_download_count_and_more'),
('api', '0001_initial_squashed'),
]

operations = [
Expand Down
2 changes: 1 addition & 1 deletion dandiapi/zarr/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Migration(migrations.Migration):
initial = True

dependencies = [
('api', '0034_remove_embargoedzarrarchive_dandiset_and_more'),
# ('api', '0034_remove_embargoedzarrarchive_dandiset_and_more'),
]

operations = [
Expand Down

0 comments on commit ac9303e

Please sign in to comment.