]> gitweb.fperrin.net Git - djsite.git/blob - quotes/migrations/0002_author_notes.py
Add the possibility of attaching notes to an author
[djsite.git] / quotes / migrations / 0002_author_notes.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', '0001_initial'),
11     ]
12
13     operations = [
14         migrations.AddField(
15             model_name='author',
16             name='notes',
17             field=models.TextField(blank=True),
18         ),
19     ]