Skip to content

Commit

Permalink
migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
erikvw committed Jan 24, 2024
1 parent ed59c8b commit b17c443
Showing 1 changed file with 49 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# 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_export",
"0018_remove_objecthistory_edc_export__modifie_36e5ad_idx_and_more",
),
("sites", "0002_alter_domain_unique"),
]

operations = [
migrations.AlterField(
model_name="datarequest",
name="site",
field=models.ForeignKey(
null=True,
on_delete=django.db.models.deletion.PROTECT,
related_name="+",
to="sites.site",
),
),
migrations.AlterField(
model_name="datarequesthistory",
name="site",
field=models.ForeignKey(
null=True,
on_delete=django.db.models.deletion.PROTECT,
related_name="+",
to="sites.site",
),
),
migrations.AlterField(
model_name="historicaldatarequest",
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 b17c443

Please sign in to comment.