# Generated by Django 5.2.5 on 2025-08-12 05:01

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('loans', '0004_loanapplication_repayment_method'),
    ]

    operations = [
        migrations.AddField(
            model_name='loanproduct',
            name='max_rollover_count',
            field=models.PositiveIntegerField(default=3, help_text='Maximum number of times a loan can be rolled over'),
        ),
        migrations.AddField(
            model_name='loanproduct',
            name='max_rollover_days',
            field=models.PositiveIntegerField(default=30, help_text='Maximum number of days for each rollover'),
        ),
        migrations.AddField(
            model_name='loanproduct',
            name='rollover_fee_percentage',
            field=models.DecimalField(decimal_places=2, default=5.0, help_text='Rollover fee as percentage of outstanding amount', max_digits=5),
        ),
    ]
