Skip to content
This repository has been archived by the owner on Feb 26, 2024. It is now read-only.

Commit

Permalink
Extra DB migrations following upstream change in ICEkit
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
jmurty committed May 19, 2017
1 parent eb7dc76 commit dcad6d0
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -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),
),
]

0 comments on commit dcad6d0

Please sign in to comment.