blob: 1f7499b024eec329fd6e625abb20fbae9e8ca576 (
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-11-01 12:54
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('posts', '0016_post_post_status'),
]
operations = [
migrations.AddField(
model_name='post',
name='edit_url',
field=models.CharField(blank=True, max_length=512, null=True),
),
]
|