Skip to content

Commit

Permalink
Merge branch 'release/0.4.11' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Jan 24, 2024
2 parents 20643a2 + 5098402 commit 2ecf996
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions edc_appointment/migrations/0048_alter_appointment_site_and_more.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Generated by Django 5.0 on 2024-01-24 18:10

import django.db.models.deletion
from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("edc_appointment", "0047_alter_appointment_options_and_more"),
("sites", "0002_alter_domain_unique"),
]

operations = [
migrations.AlterField(
model_name="appointment",
name="site",
field=models.ForeignKey(
null=True,
on_delete=django.db.models.deletion.PROTECT,
related_name="+",
to="sites.site",
),
),
migrations.AlterField(
model_name="historicalappointment",
name="site",
field=models.ForeignKey(
blank=True,
db_constraint=False,
null=True,
on_delete=django.db.models.deletion.DO_NOTHING,
related_name="+",
to="sites.site",
),
),
]

0 comments on commit 2ecf996

Please sign in to comment.