This repository has been archived on 2023-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
python-blog/attachments/migrations/0005_attachment_open_graph_image.py

20 lines
453 B
Python

# Generated by Django 3.1.1 on 2020-11-28 18:58
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("attachments", "0004_auto_20200903_2116"),
]
operations = [
migrations.AddField(
model_name="attachment",
name="open_graph_image",
field=models.BooleanField(blank=True, default=False),
preserve_default=False,
),
]