Skip to content

Commit

Permalink
Merge branch 'release/0.3.45' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Mar 27, 2024
2 parents 4950694 + 83895c2 commit 5b30074
Showing 1 changed file with 33 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
# Generated by Django 4.2.6 on 2024-03-01 10:53

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
("edc_locator", "0036_alter_historicalsubjectlocator_site_and_more"),
]

operations = [
migrations.AlterField(
model_name="historicalsubjectlocator",
name="consent_model",
field=models.CharField(blank=True, max_length=50, null=True),
),
migrations.AlterField(
model_name="historicalsubjectlocator",
name="consent_version",
field=models.CharField(blank=True, max_length=10, null=True),
),
migrations.AlterField(
model_name="subjectlocator",
name="consent_model",
field=models.CharField(blank=True, max_length=50, null=True),
),
migrations.AlterField(
model_name="subjectlocator",
name="consent_version",
field=models.CharField(blank=True, max_length=10, null=True),
),
]

0 comments on commit 5b30074

Please sign in to comment.