blog

0013_alter_comment_from_myself_alter_comment_reaction_to.py

1
# Generated by Django 4.0.6 on 2022-10-27 15:16
2
3
from django.db import migrations, models
4
import django.db.models.deletion
5
6
7
class Migration(migrations.Migration):
8
9
    dependencies = [
10
        ('blog', '0012_auto_20220403_1326'),
11
    ]
12
13
    operations = [
14
        migrations.AlterField(
15
            model_name='comment',
16
            name='from_myself',
17
            field=models.BooleanField(default=False, help_text='I trust myself, so if I write a comment, I should be able\n        to use the entire HTML5 suite. Ticking this box activates the DTL "safe"\n        tag, instead of the "urlize" tag used for normal comments.'),
18
        ),
19
        migrations.AlterField(
20
            model_name='comment',
21
            name='reaction_to',
22
            field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.CASCADE, to='blog.comment'),
23
        ),
24
    ]
25