# Generated by Django 6.0.4 on 2026-06-06 08:18

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('projects', '0004_projectfundallocation_unit_cost_currency_and_more'),
    ]

    operations = [
        migrations.AddField(
            model_name='projectfund',
            name='conversion_timing',
            field=models.CharField(choices=[('on_arrival', 'Convert when fund arrives'), ('on_payment', 'Convert when you pay'), ('on_project_end', 'Convert by the end of the project')], default='on_arrival', help_text="When the FX rate for this fund's conversions is taken.", max_length=20),
        ),
    ]
