Files @ 9ff46824209a
Branch filter:

Location: website/conservancy/usethesource/migrations/0008_comment_attribute_to.py

bsturmfels
usethesource: Allow comments to be attributed to non-account holders
# Generated by Django 3.2.19 on 2024-03-15 03:43

from django.db import migrations, models


class Migration(migrations.Migration):

    dependencies = [
        ('usethesource', '0007_candidate_show_download_disclaimer'),
    ]

    operations = [
        migrations.AddField(
            model_name='comment',
            name='attribute_to',
            field=models.CharField(blank=True, max_length=50),
        ),
    ]