diff --git a/conservancy/usethesource/migrations/0008_comment_attribute_to.py b/conservancy/usethesource/migrations/0008_comment_attribute_to.py new file mode 100644 index 0000000000000000000000000000000000000000..d3ed69b18f06a4b184a2414ca743c2e635e8aba1 --- /dev/null +++ b/conservancy/usethesource/migrations/0008_comment_attribute_to.py @@ -0,0 +1,18 @@ +# 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), + ), + ]