X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/a8ecd9c5f7bba62b02bf9c9a75a6070eda115184..e03461777af2a9d33062dda1bf888e9025731f3e:/src/catalogue/migrations/0015_book_recommended.py diff --git a/src/catalogue/migrations/0015_book_recommended.py b/src/catalogue/migrations/0015_book_recommended.py new file mode 100644 index 000000000..6e04500cd --- /dev/null +++ b/src/catalogue/migrations/0015_book_recommended.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('catalogue', '0014_auto_20170627_1442'), + ] + + operations = [ + migrations.AddField( + model_name='book', + name='recommended', + field=models.BooleanField(default=False, verbose_name='recommended'), + ), + ]