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.
 
 
 
 
feo-homepage/core/migrations/0014_eventpage_is_external.py

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.'),
),
]