From 6aed36c31f84d80773b39dba1e4fced22a2e9252 Mon Sep 17 00:00:00 2001 From: Skia Date: Mon, 21 Mar 2016 17:49:22 +0100 Subject: [PATCH] Add club migration --- club/migrations/0004_auto_20160321_1648.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 club/migrations/0004_auto_20160321_1648.py diff --git a/club/migrations/0004_auto_20160321_1648.py b/club/migrations/0004_auto_20160321_1648.py new file mode 100644 index 00000000..0a8a017a --- /dev/null +++ b/club/migrations/0004_auto_20160321_1648.py @@ -0,0 +1,19 @@ +# -*- coding: utf-8 -*- +from __future__ import unicode_literals + +from django.db import migrations, models + + +class Migration(migrations.Migration): + + dependencies = [ + ('club', '0003_club_owner_group'), + ] + + operations = [ + migrations.AlterField( + model_name='membership', + name='role', + field=models.IntegerField(choices=[(0, 'Curieux'), (1, 'Membre actif'), (2, 'Membre du bureau'), (3, 'Responsable info'), (4, 'Secrétaire'), (5, 'Responsable com'), (7, 'Trésorier'), (9, 'Vice-Président'), (10, 'Président')], default=0, verbose_name='role'), + ), + ]