mirror of
https://github.com/nanoy42/coope
synced 2024-12-24 16:03:47 +00:00
Fix categories
This commit is contained in:
parent
6e00a4658b
commit
66e5299395
1 changed files with 23 additions and 0 deletions
23
gestion/migrations/0009_auto_20190506_0939.py
Normal file
23
gestion/migrations/0009_auto_20190506_0939.py
Normal 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'),
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue