34 lines
1010 B
Python
34 lines
1010 B
Python
# Generated by Django 5.1.7 on 2025-12-02 15:00
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('app', '0308_email_job'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='transaction',
|
|
name='amount_received',
|
|
field=models.DecimalField(decimal_places=2, max_digits=15, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='transaction',
|
|
name='deposit_amount',
|
|
field=models.DecimalField(decimal_places=2, max_digits=15, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='transaction',
|
|
name='deposit_received',
|
|
field=models.DecimalField(decimal_places=2, max_digits=15, null=True),
|
|
),
|
|
migrations.AddField(
|
|
model_name='transaction',
|
|
name='deposit_remaining',
|
|
field=models.DecimalField(decimal_places=2, max_digits=15, null=True),
|
|
),
|
|
]
|