20 lines
540 B
Python
20 lines
540 B
Python
# Generated by Django 5.1.4 on 2024-12-10 23:02
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('inventory', '0007_salequotation_amount_salequotation_dealer_and_more'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='carfinance',
|
|
name='vat_amount',
|
|
field=models.DecimalField(decimal_places=2, default=2300, editable=False, max_digits=14, verbose_name='Vat Amount'),
|
|
preserve_default=False,
|
|
),
|
|
]
|