3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-05-18 07:21:47 +00:00
coope/gestion/migrations/0009_auto_20190506_0939.py
2019-05-06 09:40:50 +02:00

24 lines
795 B
Python

# 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'),
),
]