From dcad6d0bdf15d2b56f8821bae72de375c120b5fd Mon Sep 17 00:00:00 2001 From: James Murty Date: Fri, 19 May 2017 13:46:02 +1000 Subject: [PATCH] Extra DB migrations following upstream change in ICEkit The `WorkflowStateMixin` model in django-icekit -- which is used as a basis for the `EventListingPage` model -- was updated with two new fields: `brief`, and `admin_notes`. This change updates the model in this project to comply with the upstream changes. And will hopefully make ICEkit unit tests pass again in Travis. --- .../migrations/0006_auto_20170519_1345.py | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 icekit_events/page_types/eventlistingfordate/migrations/0006_auto_20170519_1345.py diff --git a/icekit_events/page_types/eventlistingfordate/migrations/0006_auto_20170519_1345.py b/icekit_events/page_types/eventlistingfordate/migrations/0006_auto_20170519_1345.py new file mode 100644 index 0000000..3ee5e21 --- /dev/null +++ b/icekit_events/page_types/eventlistingfordate/migrations/0006_auto_20170519_1345.py @@ -0,0 +1,24 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('eventlistingfordate', '0005_auto_20161130_1109'), + ] + + operations = [ + migrations.AddField( + model_name='eventlistingpage', + name='admin_notes', + field=models.TextField(help_text=b"Administrator's notes about this content", blank=True), + ), + migrations.AddField( + model_name='eventlistingpage', + name='brief', + field=models.TextField(help_text=b'A document brief describing the purpose of this content', blank=True), + ), + ]