You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dnmgmt/rrequests/migrations/0004_requestmessage_statusc...

21 lines
587 B

7 years ago
# -*- coding: utf-8 -*-
# Generated by Django 1.10.5 on 2017-03-06 11:36
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('rrequests', '0003_requestmessage_request'),
]
operations = [
migrations.AddField(
model_name='requestmessage',
name='statusChanged',
field=models.CharField(blank=True, choices=[('Open', 'OPEN'), ('Resolved', 'RESOLVED'), ('Rejected', 'REJECTED')], default=None, max_length=16, null=True),
),
]