40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
# Generated by Django 2.1.5 on 2020-10-04 15:20
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
("webapp", "0069_signupform_schema"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="event",
|
|
name="location_en",
|
|
field=models.CharField(blank=True, max_length=255, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name="event",
|
|
name="location_fi",
|
|
field=models.CharField(blank=True, max_length=255, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name="signupform",
|
|
name="email_content",
|
|
field=models.TextField(default=""),
|
|
preserve_default=False,
|
|
),
|
|
migrations.AddField(
|
|
model_name="signupform",
|
|
name="title_en",
|
|
field=models.CharField(max_length=255, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name="signupform",
|
|
name="title_fi",
|
|
field=models.CharField(max_length=255, null=True),
|
|
),
|
|
]
|