# Generated by Django 5.1.4 on 2026-06-13 10:16

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("archive", "0010_ceremonyfile_occasion"),
    ]

    operations = [
        migrations.AlterField(
            model_name="ceremonyfile",
            name="file_style",
            field=models.CharField(
                choices=[
                    ("zamineh", "زمینه"),
                    ("shoore", "شور"),
                    ("namahanag", "نماهنگ"),
                    ("rozeh", "روضه"),
                    ("naghmeh", "نغمه"),
                    ("vahed", "واحد"),
                ],
                max_length=10,
            ),
        ),
    ]
