You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
479 B
17 lines
479 B
# -*- coding: utf-8 -*-
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('core', '0013_blogpage_subtitle'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='eventpage',
|
|
name='is_external',
|
|
field=models.BooleanField(default=False, help_text='Externes Event? Externe Events werden nicht im Upcoming Events Banner auf der Startseite angezeigt.'),
|
|
),
|
|
]
|
|
|