Skip to content

Commit

Permalink
adds survey migration file
Browse files Browse the repository at this point in the history
  • Loading branch information
actlikewill committed Aug 28, 2024
1 parent 6dda48b commit d8c59dc
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions peachjam/migrations/0150_peachjamsettings_survey_link_and_more.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
# Generated by Django 4.2.15 on 2024-08-28 08:23

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


class Migration(migrations.Migration):

dependencies = [
("contenttypes", "0002_remove_content_type_name"),
("countries_plus", "0005_auto_20160224_1804"),
("languages_plus", "0004_auto_20171214_0004"),
("peachjam", "0149_relationship_subject_selectors"),
]

operations = [
migrations.AddField(
model_name="peachjamsettings",
name="survey_link",
field=models.URLField(blank=True, null=True, verbose_name="survey link"),
),
migrations.AlterField(
model_name="coredocument",
name="polymorphic_ctype",
field=models.ForeignKey(
editable=False,
null=True,
on_delete=django.db.models.deletion.CASCADE,
related_name="polymorphic_%(app_label)s.%(class)s_set+",
to="contenttypes.contenttype",
),
),
migrations.AlterField(
model_name="peachjamsettings",
name="document_jurisdictions",
field=models.ManyToManyField(
blank=True,
related_name="+",
to="countries_plus.country",
verbose_name="document jurisdictions",
),
),
migrations.AlterField(
model_name="peachjamsettings",
name="document_languages",
field=models.ManyToManyField(
blank=True,
related_name="+",
to="languages_plus.language",
verbose_name="document languages",
),
),
]

0 comments on commit d8c59dc

Please sign in to comment.