mirror of
https://github.com/nanoy42/coope
synced 2024-11-04 17:06:27 +00:00
24 lines
633 B
Python
24 lines
633 B
Python
|
# Generated by Django 2.1 on 2019-08-29 10:19
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
|
||
|
dependencies = [
|
||
|
('gestion', '0012_auto_20190827_2119'),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name='historicalproduct',
|
||
|
name='use_stocks',
|
||
|
field=models.BooleanField(default=True, verbose_name='Utiliser les stocks ?'),
|
||
|
),
|
||
|
migrations.AddField(
|
||
|
model_name='product',
|
||
|
name='use_stocks',
|
||
|
field=models.BooleanField(default=True, verbose_name='Utiliser les stocks ?'),
|
||
|
),
|
||
|
]
|