3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-06-26 01:17:44 +00:00

Fix categories

This commit is contained in:
Yoann Pétri 2019-05-06 09:40:50 +02:00
parent 6e00a4658b
commit 66e5299395

View file

@ -0,0 +1,23 @@
# Generated by Django 2.1 on 2019-05-06 07:39
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('gestion', '0008_auto_20190503_1908'),
]
operations = [
migrations.AddField(
model_name='historicalproduct',
name='draft_category',
field=models.IntegerField(choices=[(0, 'Pas une bière pression'), (1, 'Pinte'), (2, 'Demi'), (3, 'Galopin')], default=0, verbose_name='Type de pression'),
),
migrations.AddField(
model_name='product',
name='draft_category',
field=models.IntegerField(choices=[(0, 'Pas une bière pression'), (1, 'Pinte'), (2, 'Demi'), (3, 'Galopin')], default=0, verbose_name='Type de pression'),
),
]