mirror of
https://github.com/nanoy42/coope
synced 2024-11-05 09:26:27 +00:00
23 lines
633 B
Python
23 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 ?'),
|
|
),
|
|
]
|