Code layout change.
[wolnelektury.git] / src / social / migrations / 0002_auto_20151221_1225.py
diff --git a/src/social/migrations/0002_auto_20151221_1225.py b/src/social/migrations/0002_auto_20151221_1225.py
new file mode 100644 (file)
index 0000000..f26e4f8
--- /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', '0001_initial'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='cite',
+            name='image_title',
+            field=models.CharField(max_length=255, null=True, verbose_name='title', blank=True),
+        ),
+    ]