# Generated by Django 5.2.9 on 2025-12-19 00:48

from decimal import Decimal
from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('investments', '0001_initial'),
    ]

    operations = [
        migrations.AddField(
            model_name='investment',
            name='roi_total_amount',
            field=models.DecimalField(decimal_places=8, default=Decimal('0E-8'), help_text='Accumulated total ROI amount generated for this investment', max_digits=20),
        ),
        migrations.AddField(
            model_name='investment',
            name='roi_total_percent',
            field=models.DecimalField(decimal_places=4, default=Decimal('0.0000'), help_text='Accumulated total ROI percentage ((roi_total_amount / amount) * 100)', max_digits=10),
        ),
    ]
