34 lines
827 B
Python
34 lines
827 B
Python
|
# Generated by Django 2.2.12 on 2020-05-15 15:47
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
("kfet", "0071_promo_2020"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name="article",
|
||
|
name="abv",
|
||
|
field=models.DecimalField(
|
||
|
decimal_places=1,
|
||
|
default=0,
|
||
|
max_digits=6,
|
||
|
verbose_name="Degré d'alcool (en %)",
|
||
|
),
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name="article",
|
||
|
name="volume",
|
||
|
field=models.DecimalField(
|
||
|
decimal_places=1,
|
||
|
default=0,
|
||
|
max_digits=6,
|
||
|
verbose_name="Volume d'une unité (en cL)",
|
||
|
),
|
||
|
),
|
||
|
]
|