OpenSlides/openslides/agenda/migrations/0004_speaker_marked.py

19 lines
436 B
Python
Raw Normal View History

2018-02-06 14:52:47 +01:00
# -*- coding: utf-8 -*-
# Generated by Django 1.10.8 on 2018-02-06 12:26
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
2019-01-06 16:22:33 +01:00
dependencies = [("agenda", "0003_auto_20170818_1202")]
2018-02-06 14:52:47 +01:00
operations = [
migrations.AddField(
2019-01-06 16:22:33 +01:00
model_name="speaker",
name="marked",
2018-02-06 14:52:47 +01:00
field=models.BooleanField(default=False),
2019-01-06 16:22:33 +01:00
)
2018-02-06 14:52:47 +01:00
]