]> gitweb.fperrin.net Git - djsite.git/blobdiff - quotes/migrations/0003_auto_20160928_2223.py
Add the possibility of attaching notes to an author
[djsite.git] / quotes / migrations / 0003_auto_20160928_2223.py
diff --git a/quotes/migrations/0003_auto_20160928_2223.py b/quotes/migrations/0003_auto_20160928_2223.py
new file mode 100644 (file)
index 0000000..dc62f34
--- /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 = [
+        ('quotes', '0002_author_notes'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='author',
+            name='notes',
+            field=models.TextField(help_text=b'Notes for the author; may be left blank. Will                               not be HTML-escaped.', blank=True),
+        ),
+    ]