]> gitweb.fperrin.net Git - djsite.git/blob - 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
1 # -*- coding: utf-8 -*-
2 from __future__ import unicode_literals
3
4 from django.db import migrations, models
5
6
7 class Migration(migrations.Migration):
8
9     dependencies = [
10         ('quotes', '0002_author_notes'),
11     ]
12
13     operations = [
14         migrations.AlterField(
15             model_name='author',
16             name='notes',
17             field=models.TextField(help_text=b'Notes for the author; may be left blank. Will                               not be HTML-escaped.', blank=True),
18         ),
19     ]