This commit is contained in:
Xuan Loi
2026-01-06 09:56:57 +07:00
parent fe107222c1
commit 661bb2ba7a
11 changed files with 48 additions and 1 deletions

View File

@@ -0,0 +1,17 @@
# Generated by Django 5.1.7 on 2026-01-06 02:47
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
('app', '0347_merge_20260105_1342'),
]
operations = [
migrations.RemoveField(
model_name='payment_schedule',
name='entry',
),
]

View File

@@ -0,0 +1,28 @@
# Generated by Django 5.1.7 on 2026-01-06 02:56
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('app', '0348_remove_payment_schedule_entry'),
]
operations = [
migrations.AddField(
model_name='internal_entry',
name='allocation_amount',
field=models.DecimalField(decimal_places=2, max_digits=15, null=True),
),
migrations.AddField(
model_name='internal_entry',
name='allocation_detail',
field=models.JSONField(null=True),
),
migrations.AddField(
model_name='payment_schedule',
name='entry',
field=models.JSONField(null=True),
),
]