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/0007_auto_20201201_1917.py
Gabriel Augendre 297e211d1c
Fix attachment upload
There was no default specified for
the open_graph_image flag
2020-12-01 19:18:04 +01:00

19 lines
419 B
Python

# Generated by Django 3.1.3 on 2020-12-01 18:17
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("attachments", "0006_auto_20201128_2022"),
]
operations = [
migrations.AlterField(
model_name="attachment",
name="open_graph_image",
field=models.BooleanField(blank=True, default=False),
),
]