# Generated by Django 5.2.15 on 2026-07-06 08:25

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ("repository_documents", "0014_collection_notify_roles"),
    ]

    operations = [
        migrations.AddField(
            model_name="collection",
            name="retention_notice_days",
            field=models.PositiveIntegerField(
                default=14,
                help_text="Days of advance notice given to collection managers before a retention action is applied. Set to 0 to disable advance notice.",
            ),
        ),
        migrations.AddField(
            model_name="document",
            name="archived_at",
            field=models.DateTimeField(blank=True, null=True),
        ),
        migrations.AddField(
            model_name="document",
            name="is_archived",
            field=models.BooleanField(db_index=True, default=False),
        ),
    ]
