Skip to content

Commit

Permalink
Add missing migration dependencies
Browse files Browse the repository at this point in the history
These missing dependencies mean that running
`./manage.py migrate` from scratch fails, since the
migrations are referring to models introduced in
migrations that haven't been run yet.
  • Loading branch information
markl-canva authored and Virginia Dooley committed Jul 2, 2024
1 parent c1e9f98 commit a1fb1d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
class Migration(migrations.Migration):
dependencies = [
("bulk_adding", "0007_alter_rawpeople_data"),
("sopn_parsing", "0002_awstextractparsedsopn"),
]

operations = [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ class Migration(migrations.Migration):
"sopn_parsing",
"0006_rename_sopn_awstextractparsedsopn_official_document_and_more",
),
(
"official_documents",
"0033_ballotsopnhistory_ballotsopn"
),
]

operations = [
Expand Down

0 comments on commit a1fb1d8

Please sign in to comment.