diff options
author | luxagraf <sng@luxagraf.net> | 2016-02-08 10:44:16 -0500 |
---|---|---|
committer | luxagraf <sng@luxagraf.net> | 2016-02-08 10:44:16 -0500 |
commit | 34df0f81d9a4480eb33c77a22879218e35fa0b49 (patch) | |
tree | 9438101199265d82cdf8206a808e2d287b0fe277 /app/books/migrations/0002_book_is_public.py | |
parent | e6a76cb591edcd794b6ba27c64dd5ed68601353d (diff) |
added an is_public field so I can keep some of the scifi and pulp out of
the public performance part of the site should I decided to do that.
Diffstat (limited to 'app/books/migrations/0002_book_is_public.py')
-rw-r--r-- | app/books/migrations/0002_book_is_public.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/app/books/migrations/0002_book_is_public.py b/app/books/migrations/0002_book_is_public.py new file mode 100644 index 0000000..bf36759 --- /dev/null +++ b/app/books/migrations/0002_book_is_public.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.9 on 2016-02-08 10:42 +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('books', '0001_initial'), + ] + + operations = [ + migrations.AddField( + model_name='book', + name='is_public', + field=models.BooleanField(default=True), + ), + ] |