OpenSlides/server/openslides/motions/migrations/0004_motionchangerecommenda...

19 lines
458 B
Python
Raw Normal View History

2017-11-17 12:10:46 +01:00
# -*- coding: utf-8 -*-
# Generated by Django 1.10.8 on 2017-11-17 10:47
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
2019-01-06 16:22:33 +01:00
dependencies = [("motions", "0003_motion_comments")]
2017-11-17 12:10:46 +01:00
operations = [
migrations.AddField(
2019-01-06 16:22:33 +01:00
model_name="motionchangerecommendation",
name="other_description",
2017-11-17 12:10:46 +01:00
field=models.TextField(blank=True),
2019-01-06 16:22:33 +01:00
)
2017-11-17 12:10:46 +01:00
]