# Generated by Django 6.0.4 on 2026-06-06 06:09

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('projects', '0003_projectfundallocation_frequency_and_more'),
    ]

    operations = [
        migrations.AddField(
            model_name='projectfundallocation',
            name='unit_cost_currency',
            field=models.CharField(blank=True, help_text='Currency of unit_cost; defaults to the fund currency.', max_length=10),
        ),
        migrations.AddField(
            model_name='projectfundallocation',
            name='unit_cost_fund_ccy',
            field=models.DecimalField(decimal_places=2, default=0, help_text='unit_cost converted to the fund currency (used in amount).', max_digits=14),
        ),
        migrations.AlterField(
            model_name='projectfundallocation',
            name='amount',
            field=models.DecimalField(decimal_places=2, default=0, help_text='Computed, in fund currency.', max_digits=14),
        ),
        migrations.AlterField(
            model_name='projectfundallocation',
            name='unit_cost',
            field=models.DecimalField(decimal_places=2, default=0, help_text='Unit cost as entered, in unit_cost_currency.', max_digits=14),
        ),
    ]
