Skip to content
Snippets Groups Projects
Commit e9775ea3 authored by jan.bednarik's avatar jan.bednarik
Browse files

Add missing migrations

parent eca02bd3
No related branches found
No related tags found
2 merge requests!578Release,!577Fix errors
# Generated by Django 4.0.7 on 2022-08-06 01:50
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("district", "0094_alter_districtelectioncampaignpage_candidates"),
]
operations = [
migrations.AlterModelOptions(
name="districtpersonpage",
options={"ordering": ("title",), "verbose_name": "Detail osoby"},
),
migrations.AlterModelOptions(
name="districtprogrampage",
options={"verbose_name": "Plnění programu"},
),
]
# Generated by Django 4.0.7 on 2022-08-06 01:50
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("uniweb", "0031_alter_uniwebarticlepage_content"),
]
operations = [
migrations.AlterField(
model_name="uniwebformfield",
name="choices",
field=models.TextField(
blank=True,
help_text="Comma or new line separated list of choices. Only applicable in checkboxes, radio and dropdown.",
verbose_name="choices",
),
),
migrations.AlterField(
model_name="uniwebformfield",
name="default_value",
field=models.TextField(
blank=True,
help_text="Default value. Comma or new line separated values supported for checkboxes.",
verbose_name="default value",
),
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment