2018-07-13 10:08:18 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Generated by Django 1.10.8 on 2018-07-13 08:02
|
|
|
|
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", "0008_auto_20180702_1128")]
|
2018-07-13 10:08:18 +02:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
2019-01-06 16:22:33 +01:00
|
|
|
model_name="motionversion",
|
|
|
|
name="modified_final_version",
|
2018-07-13 10:08:18 +02:00
|
|
|
field=models.TextField(blank=True, null=True),
|
2019-01-06 16:22:33 +01:00
|
|
|
)
|
2018-07-13 10:08:18 +02:00
|
|
|
]
|