From 75e7d209e57ce14801a42e12427c2ea8ec807bf5 Mon Sep 17 00:00:00 2001 From: Tomas Neme Date: Mon, 14 May 2012 13:07:36 -0300 Subject: [PATCH] fixing frozen model in migration 0005 to add field added in 0004 --- .../0005_auto__add_field_customfield_empty_selection_list.py | 1 + 1 file changed, 1 insertion(+) diff --git a/helpdesk/migrations/0005_auto__add_field_customfield_empty_selection_list.py b/helpdesk/migrations/0005_auto__add_field_customfield_empty_selection_list.py index e1b002d3..74c5326e 100644 --- a/helpdesk/migrations/0005_auto__add_field_customfield_empty_selection_list.py +++ b/helpdesk/migrations/0005_auto__add_field_customfield_empty_selection_list.py @@ -181,6 +181,7 @@ class Migration(SchemaMigration): 'modified': ('django.db.models.fields.DateTimeField', [], {'blank': 'True'}), 'on_hold': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), 'priority': ('django.db.models.fields.IntegerField', [], {'default': '3', 'blank': '3'}), + 'due_date': ('django.db.models.fields.DateTimeField', [], {'blank': 'True', 'null': 'True'}), 'queue': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['helpdesk.Queue']"}), 'resolution': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}), 'status': ('django.db.models.fields.IntegerField', [], {'default': '1'}),