mirror of
https://github.com/django-helpdesk/django-helpdesk.git
synced 2025-05-28 13:57:06 +02:00
UPDATE: Removed an unnecessary migration created by mistake.
This commit is contained in:
parent
71a0fdfc9c
commit
0c480b4abd
@ -13,8 +13,8 @@ class Migration(migrations.Migration):
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='ticket',
|
||||
name='submitter_email_id',
|
||||
field=models.CharField(blank=True, editable=False, help_text="The Message ID of the submitter's email.", max_length=256, null=True, verbose_name='Submitter E-Mail ID'),
|
||||
model_name='followup',
|
||||
name='message_id',
|
||||
field=models.CharField(blank=True, editable=False, help_text="The Message ID of the submitter's email.", max_length=256, null=True, verbose_name='E-Mail ID'),
|
||||
),
|
||||
]
|
||||
|
@ -1,24 +0,0 @@
|
||||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.9.1 on 2016-02-16 18:13
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('helpdesk', '0012_add_submitter_email_id_field_to_ticket'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.RemoveField(
|
||||
model_name='ticket',
|
||||
name='submitter_email_id',
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='followup',
|
||||
name='message_id',
|
||||
field=models.CharField(blank=True, editable=False, help_text="The Message ID of the submitter's email.", max_length=256, null=True, verbose_name='E-Mail ID'),
|
||||
),
|
||||
]
|
Loading…
x
Reference in New Issue
Block a user