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

Commit

Permalink
Update 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 `EventBase` 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 1e867d4 commit eb7dc76
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions icekit_events/migrations/0025_auto_20170519_1327.py
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 = [
('icekit_events', '0024_auto_20170320_1824'),
]

operations = [
migrations.AddField(
model_name='eventbase',
name='admin_notes',
field=models.TextField(help_text=b"Administrator's notes about this content", blank=True),
),
migrations.AddField(
model_name='eventbase',
name='brief',
field=models.TextField(help_text=b'A document brief describing the purpose of this content', blank=True),
),
]

0 comments on commit eb7dc76

Please sign in to comment.