Skip to content

Commit 463ea40

Browse files
committed
fixed error in CharField
1 parent a4b574e commit 463ea40

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

core/migrations/0001_initial.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -475,10 +475,7 @@ class Migration(migrations.Migration):
475475
verbose_name="ID",
476476
),
477477
),
478-
(
479-
"sample_unique_id",
480-
models.CharField(max_length=12, unique=True, null=True),
481-
),
478+
("sample_unique_id", models.CharField(max_length=12, unique=True)),
482479
(
483480
"microbiology_lab_sample_id",
484481
models.CharField(blank=True, max_length=80, null=True),

0 commit comments

Comments
 (0)