Files @ 296f29c84bb2
Branch filter:

Location: website/conservancy/usethesource/migrations/0007_candidate_show_download_disclaimer.py

bsturmfels
usethesource: Add candidate option to show/hide download disclaimer
# Generated by Django 3.2.19 on 2024-03-15 03:25

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('usethesource', '0006_alter_comment_time'),
    ]

    operations = [
        migrations.AddField(
            model_name='candidate',
            name='show_download_disclaimer',
            field=models.BooleanField(default=True),
        ),
    ]