# Generated by Django 5.2.13 on 2026-05-17 20:28

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("rims_grants", "0038_cs033_grant_call_version"),
    ]

    operations = [
        migrations.AlterField(
            model_name="grantcall",
            name="applicant_attachment_formats",
            field=models.CharField(
                blank=True,
                default="pdf,docx",
                help_text="Comma-separated allowed file extensions (no dot, lower-case). e.g. pdf,docx,xlsx.",
                max_length=120,
            ),
        ),
        migrations.AlterField(
            model_name="grantcall",
            name="applicant_attachment_max_size_mb",
            field=models.PositiveSmallIntegerField(
                blank=True,
                default=10,
                help_text="Maximum size per applicant attachment, in megabytes.",
            ),
        ),
    ]
