From 8a1af73ee0c775fb33c61f8aa30021ad38416a15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20P=C3=A9pin?= Date: Fri, 31 Mar 2017 17:53:35 +0100 Subject: [PATCH] A migration for the new field `appear_catalogue` --- .../0011_tirage_appear_catalogue.py | 22 +++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 bda/migrations/0011_tirage_appear_catalogue.py diff --git a/bda/migrations/0011_tirage_appear_catalogue.py b/bda/migrations/0011_tirage_appear_catalogue.py new file mode 100644 index 00000000..c2a2479d --- /dev/null +++ b/bda/migrations/0011_tirage_appear_catalogue.py @@ -0,0 +1,22 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('bda', '0010_spectaclerevente_shotgun'), + ] + + operations = [ + migrations.AddField( + model_name='tirage', + name='appear_catalogue', + field=models.BooleanField( + default=False, + verbose_name='Tirage à afficher dans le catalogue' + ), + ), + ]