blob: 7b6e58889f8de05c9ea8a2f4b15b92050c28ad04 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Generated by Django 4.2.7 on 2024-03-10 10:05
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('posts', '0030_post_template_name'),
]
operations = [
migrations.AlterField(
model_name='post',
name='enable_comments',
field=models.BooleanField(default=True),
),
]
|