Skip to content

Commit

Permalink
Add mising migration file
Browse files Browse the repository at this point in the history
  • Loading branch information
moustaphacheikh committed Sep 27, 2024
1 parent cc8298c commit d25f9b3
Showing 1 changed file with 60 additions and 0 deletions.
60 changes: 60 additions & 0 deletions core/migrations/0037_auto_20240924_1020.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
# Generated by Django 3.2.23 on 2024-09-24 08:20

from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("core", "0036_use_restriction_codes"),
]

operations = [
migrations.AlterField(
model_name="cohort",
name="elu_accession",
field=models.CharField(
blank=True,
help_text="Unique persistent identifier of the record.",
max_length=20,
null=True,
unique=True,
verbose_name="Accession number",
),
),
migrations.AlterField(
model_name="dataset",
name="elu_accession",
field=models.CharField(
blank=True,
help_text="Unique persistent identifier of the record.",
max_length=20,
null=True,
unique=True,
verbose_name="Accession number",
),
),
migrations.AlterField(
model_name="partner",
name="elu_accession",
field=models.CharField(
blank=True,
help_text="Unique persistent identifier of the record.",
max_length=20,
null=True,
unique=True,
verbose_name="Accession number",
),
),
migrations.AlterField(
model_name="project",
name="elu_accession",
field=models.CharField(
blank=True,
help_text="Unique persistent identifier of the record.",
max_length=20,
null=True,
unique=True,
verbose_name="Accession number",
),
),
]

0 comments on commit d25f9b3

Please sign in to comment.