Skip to content
Snippets Groups Projects
Unverified Commit 4e37e0b3 authored by Luke Murphy's avatar Luke Murphy
Browse files

fixup! Add a feedback type field.

parent 064744c1
No related branches found
No related tags found
No related merge requests found
# -*- coding: utf-8 -*-
# Generated by Django 1.11.16 on 2018-12-05 09:37
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('data_layer', '0010_auto_20181204_1259'),
]
operations = [
migrations.AddField(
model_name='message',
name='feedback_type',
field=models.CharField(blank=True, choices=[(b'CONCERN', b'Concern'), (b'QUESTION', b'Question'), (b'RUMOUR', b'Rumour')], default=None, max_length=100),
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment