Skip to content

Commit e2f94b4

Browse files
remove data migrate function from migration
1 parent d8b898d commit e2f94b4

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

apps/fhir/bluebutton/migrations/0009_migrate_fhir_id_to_v2.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
# Generated by Django 4.2.24 on 2025-09-23 13:25
22

33
from django.db import migrations, models
4-
from apps.fhir.bluebutton.management.commands.migrate_fhir_id_to_v2 import (
5-
migrate_fhir_id_to_v2,
6-
reverse_migrate_v2_to_fhir_id,
7-
)
84

95
# TODO - Migration is Unapplied
106
# This migration needs to be run after deployment of bluebutton 0008 and when all
@@ -18,7 +14,7 @@ class Migration(migrations.Migration):
1814
]
1915

2016
operations = [
21-
migrations.RunPython(migrate_fhir_id_to_v2, reverse_migrate_v2_to_fhir_id),
17+
# migrations.RunPython(migrate_fhir_id_to_v2, reverse_migrate_v2_to_fhir_id),
2218
migrations.AddConstraint( # After migration happens, add constraint that a fhir_id must be present
2319
model_name='crosswalk',
2420
constraint=models.CheckConstraint(

0 commit comments

Comments
 (0)