Initial commit (Clean history)
This commit is contained in:
18
app/migrations/0315_transaction_detail_amount_recived.py
Normal file
18
app/migrations/0315_transaction_detail_amount_recived.py
Normal file
@@ -0,0 +1,18 @@
|
||||
# Generated by Django 5.1.7 on 2025-12-09 11:45
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('app', '0314_alter_payment_schedule_txn_detail'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='transaction_detail',
|
||||
name='amount_recived',
|
||||
field=models.DecimalField(decimal_places=2, max_digits=15, null=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user