21 lines
469 B
Python
21 lines
469 B
Python
# -*- coding: utf-8 -*-
|
|
# Generated by Django 1.11.9 on 2018-02-26 16:55
|
|
from __future__ import unicode_literals
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('dav_events', '0015_auto_20180226_1253'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='event',
|
|
name='registration_required',
|
|
field=models.BooleanField(default=False),
|
|
),
|
|
]
|