changes
This commit is contained in:
48
app/migrations/0344_payment_schedule_ovd_days_and_more.py
Normal file
48
app/migrations/0344_payment_schedule_ovd_days_and_more.py
Normal file
@@ -0,0 +1,48 @@
|
||||
# Generated by Django 5.1.7 on 2026-01-05 04:52
|
||||
|
||||
from django.db import migrations, models
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('app', '0343_import_setting_call_api_delete_payment'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AddField(
|
||||
model_name='payment_schedule',
|
||||
name='ovd_days',
|
||||
field=models.IntegerField(null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='payment_schedule',
|
||||
name='penalty_amount',
|
||||
field=models.DecimalField(decimal_places=2, max_digits=15, null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='transaction',
|
||||
name='amount_remain',
|
||||
field=models.DecimalField(decimal_places=2, max_digits=15, null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='transaction',
|
||||
name='ovd_days',
|
||||
field=models.IntegerField(null=True),
|
||||
),
|
||||
migrations.AddField(
|
||||
model_name='transaction',
|
||||
name='penalty_amount',
|
||||
field=models.DecimalField(decimal_places=2, max_digits=15, null=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='company',
|
||||
name='code',
|
||||
field=models.CharField(db_index=True, max_length=20, null=True, unique=True),
|
||||
),
|
||||
migrations.AlterField(
|
||||
model_name='people',
|
||||
name='code',
|
||||
field=models.CharField(db_index=True, max_length=20, null=True, unique=True),
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user