blob: a83834726589a517cd690691246613e2a9ac4642 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Generated by Django 4.2.2 on 2023-07-10 19:25
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('posts', '0006_alter_post_post_type'),
]
operations = [
migrations.AlterField(
model_name='post',
name='title',
field=models.CharField(blank=True, max_length=512, null=True),
),
]
|