mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-01 11:58:04 +00:00
22 lines
496 B
Python
22 lines
496 B
Python
# Generated by Django 3.2.16 on 2022-12-15 16:09
|
|
|
|
from django.db import migrations
|
|
|
|
import accounting.models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("counter", "0019_billinginfo"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="customer",
|
|
name="amount",
|
|
field=accounting.models.CurrencyField(
|
|
decimal_places=2, default=0, max_digits=12, verbose_name="amount"
|
|
),
|
|
),
|
|
]
|