Skip to content

Commit d740668

Browse files
BB2-4219: fix unique constraint on archivedcrosswalk.fhir_id (#1407)
1 parent e179f5c commit d740668

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/fhir/bluebutton/migrations/0008_add_v2_v3_fhir_id.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ class Migration(migrations.Migration):
5555
db_index=True,
5656
default=None,
5757
max_length=80,
58-
unique=True,
58+
unique=False,
5959
null=True # Modifying field to prepare for deletion
6060
)
6161
),

apps/fhir/bluebutton/migrations/0010_remove_fhir_id.py

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

3-
from django.db import migrations, models
3+
from django.db import migrations
44

55

66
class Migration(migrations.Migration):

0 commit comments

Comments
 (0)