outstanding migration (previous commit msg should be: banner option for cite)
authorJan Szejko <janek37@gmail.com>
Wed, 17 Aug 2016 12:03:44 +0000 (14:03 +0200)
committerJan Szejko <janek37@gmail.com>
Wed, 17 Aug 2016 12:03:44 +0000 (14:03 +0200)
src/social/migrations/0003_cite_banner.py [new file with mode: 0644]

diff --git a/src/social/migrations/0003_cite_banner.py b/src/social/migrations/0003_cite_banner.py
new file mode 100644 (file)
index 0000000..0aaea6d
--- /dev/null
@@ -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'),
+        ),
+    ]