2018-06-12 13:43:28 +02:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Generated by Django 1.10.5 on 2018-03-07 10:46
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
import jsonfield.fields
|
|
|
|
from django.db import migrations
|
|
|
|
|
|
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
|
2019-01-06 16:22:33 +01:00
|
|
|
dependencies = [("motions", "0006_submitter_model")]
|
2018-06-12 13:43:28 +02:00
|
|
|
|
|
|
|
operations = [
|
|
|
|
migrations.AddField(
|
2019-01-06 16:22:33 +01:00
|
|
|
model_name="motionversion",
|
|
|
|
name="amendment_paragraphs",
|
2018-06-12 13:43:28 +02:00
|
|
|
field=jsonfield.fields.JSONField(null=True),
|
2019-01-06 16:22:33 +01:00
|
|
|
)
|
2018-06-12 13:43:28 +02:00
|
|
|
]
|