20 lines
495 B
Python
20 lines
495 B
Python
# Generated by Django 5.1.4 on 2024-12-11 12:09
|
|
|
|
from decimal import Decimal
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('inventory', '0008_carfinance_vat_amount'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name='salequotation',
|
|
name='amount',
|
|
field=models.DecimalField(decimal_places=2, default=Decimal('0.00'), max_digits=10, verbose_name='Amount'),
|
|
),
|
|
]
|