Skip to content
Snippets Groups Projects
0025_contact_email.py 547 B
Newer Older
# Generated by Django 2.2.6 on 2019-10-28 17:40

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('AKModel', '0024_event_dependencies'),
    ]

    operations = [
        migrations.AddField(
            model_name='event',
            name='contact_email',
            field=models.EmailField(blank=True, help_text='An email address that is displayed on every page and can be used for all kinds of questions', max_length=254, verbose_name='Contact email address'),
        ),
    ]