Skip to content

Commit

Permalink
💚 Remove references to deleted migrations (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
falexwolf authored Feb 16, 2025
1 parent 4286bd9 commit f59efb5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
4 changes: 3 additions & 1 deletion omop/migrations/0001_initial.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@
class Migration(migrations.Migration):
initial = True

dependencies: list = []
dependencies: list = [
("lamindb", "0081_revert_textfield_collection"),
]

operations = [
migrations.CreateModel(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@

class Migration(migrations.Migration):
dependencies = [
(
"lamindb",
"0069_alter_artifact__accessor_alter_artifact__hash_type_and_more",
),
("omop", "0001_initial"),
]

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

class Migration(migrations.Migration):
dependencies = [
("lamindb", "0081_revert_textfield_collection"),
("omop", "0002_alter_caresite_options_alter_cdmsource_options_and_more"),
]

Expand Down

0 comments on commit f59efb5

Please sign in to comment.