From 6febf5abae736b88e5970702eae16fd19f32d51f Mon Sep 17 00:00:00 2001 From: Guillaume Pellerin Date: Tue, 10 May 2016 15:56:30 +0200 Subject: [PATCH] add event.brochure migration --- .../mezzanine_agenda/0014_event_brochure.py | 21 +++++++++++++++++++ lib/mezzanine-agenda | 2 +- 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 app/migrations/mezzanine_agenda/0014_event_brochure.py diff --git a/app/migrations/mezzanine_agenda/0014_event_brochure.py b/app/migrations/mezzanine_agenda/0014_event_brochure.py new file mode 100644 index 00000000..82331688 --- /dev/null +++ b/app/migrations/mezzanine_agenda/0014_event_brochure.py @@ -0,0 +1,21 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9.2 on 2016-05-10 13:56 +from __future__ import unicode_literals + +from django.db import migrations +import mezzanine.core.fields + + +class Migration(migrations.Migration): + + dependencies = [ + ('mezzanine_agenda', '0013_auto_20160510_1542'), + ] + + operations = [ + migrations.AddField( + model_name='event', + name='brochure', + field=mezzanine.core.fields.FileField(blank=True, max_length=1024, verbose_name='brochure'), + ), + ] diff --git a/lib/mezzanine-agenda b/lib/mezzanine-agenda index d9d6a734..ab2706be 160000 --- a/lib/mezzanine-agenda +++ b/lib/mezzanine-agenda @@ -1 +1 @@ -Subproject commit d9d6a734a2a4897273b562d82c59565c2cb744c6 +Subproject commit ab2706be3718922f05bf24207ea010f88b8b9bf1 -- 2.39.5