You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
497 B
Python
21 lines
497 B
Python
# Generated by Django 4.0.1 on 2024-12-02 00:22
|
|
|
|
from django.db import migrations
|
|
from django.db import models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("finance", "0003_alter_bill_options_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="bill",
|
|
name="amount",
|
|
field=models.DecimalField(
|
|
decimal_places=2, default=0, max_digits=6, verbose_name="Amount"
|
|
),
|
|
),
|
|
]
|