From 0cb8614763599a7079fecb9f72af6a363ee8d8a0 Mon Sep 17 00:00:00 2001 From: Jan Szejko Date: Wed, 17 Aug 2016 14:03:44 +0200 Subject: [PATCH] outstanding migration (previous commit msg should be: banner option for cite) --- src/social/migrations/0003_cite_banner.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/social/migrations/0003_cite_banner.py diff --git a/src/social/migrations/0003_cite_banner.py b/src/social/migrations/0003_cite_banner.py new file mode 100644 index 000000000..0aaea6dc3 --- /dev/null +++ b/src/social/migrations/0003_cite_banner.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('social', '0002_auto_20151221_1225'), + ] + + operations = [ + migrations.AddField( + model_name='cite', + name='banner', + field=models.BooleanField(default=False, help_text='Adjust size to image, ignore the text', verbose_name='banner'), + ), + ] -- 2.20.1