mirror of https://github.com/nanoy42/coope
10 changed files with 126 additions and 17 deletions
@ -0,0 +1,74 @@ |
|||||
|
# Generated by Django 2.1 on 2018-12-05 00:42 |
||||
|
|
||||
|
import django.core.validators |
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('gestion', '0009_auto_20181202_1628'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AlterField( |
||||
|
model_name='historicalkeg', |
||||
|
name='amount', |
||||
|
field=models.DecimalField(decimal_places=2, max_digits=7, validators=[django.core.validators.MinValueValidator(0)], verbose_name='Prix du fût'), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='historicalmenu', |
||||
|
name='amount', |
||||
|
field=models.DecimalField(decimal_places=2, max_digits=7, validators=[django.core.validators.MinValueValidator(0)], verbose_name='Montant'), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='historicalmenuhistory', |
||||
|
name='amount', |
||||
|
field=models.DecimalField(decimal_places=2, default=0, max_digits=7), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='historicalproduct', |
||||
|
name='adherentRequired', |
||||
|
field=models.BooleanField(default=True, verbose_name='Adhérent requis'), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='historicalrefund', |
||||
|
name='amount', |
||||
|
field=models.DecimalField(decimal_places=2, max_digits=7, validators=[django.core.validators.MinValueValidator(0)], verbose_name='Montant'), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='historicalreload', |
||||
|
name='amount', |
||||
|
field=models.DecimalField(decimal_places=2, max_digits=7, validators=[django.core.validators.MinValueValidator(0)], verbose_name='Montant'), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='keg', |
||||
|
name='amount', |
||||
|
field=models.DecimalField(decimal_places=2, max_digits=7, validators=[django.core.validators.MinValueValidator(0)], verbose_name='Prix du fût'), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='menu', |
||||
|
name='amount', |
||||
|
field=models.DecimalField(decimal_places=2, max_digits=7, validators=[django.core.validators.MinValueValidator(0)], verbose_name='Montant'), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='menuhistory', |
||||
|
name='amount', |
||||
|
field=models.DecimalField(decimal_places=2, default=0, max_digits=7), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='product', |
||||
|
name='adherentRequired', |
||||
|
field=models.BooleanField(default=True, verbose_name='Adhérent requis'), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='refund', |
||||
|
name='amount', |
||||
|
field=models.DecimalField(decimal_places=2, max_digits=7, validators=[django.core.validators.MinValueValidator(0)], verbose_name='Montant'), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='reload', |
||||
|
name='amount', |
||||
|
field=models.DecimalField(decimal_places=2, max_digits=7, validators=[django.core.validators.MinValueValidator(0)], verbose_name='Montant'), |
||||
|
), |
||||
|
] |
||||
@ -0,0 +1,33 @@ |
|||||
|
# Generated by Django 2.1 on 2018-12-05 00:42 |
||||
|
|
||||
|
from django.db import migrations, models |
||||
|
|
||||
|
|
||||
|
class Migration(migrations.Migration): |
||||
|
|
||||
|
dependencies = [ |
||||
|
('users', '0005_auto_20181202_1628'), |
||||
|
] |
||||
|
|
||||
|
operations = [ |
||||
|
migrations.AlterField( |
||||
|
model_name='historicalprofile', |
||||
|
name='credit', |
||||
|
field=models.DecimalField(decimal_places=2, default=0, max_digits=7), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='historicalprofile', |
||||
|
name='debit', |
||||
|
field=models.DecimalField(decimal_places=2, default=0, max_digits=7), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='profile', |
||||
|
name='credit', |
||||
|
field=models.DecimalField(decimal_places=2, default=0, max_digits=7), |
||||
|
), |
||||
|
migrations.AlterField( |
||||
|
model_name='profile', |
||||
|
name='debit', |
||||
|
field=models.DecimalField(decimal_places=2, default=0, max_digits=7), |
||||
|
), |
||||
|
] |
||||
Loading…
Reference in new issue