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/0006_auto_20201128_2022.py

28 lines
691 B
Python

# Generated by Django 3.1.1 on 2020-11-28 19:22
from django.db import migrations
import attachments.models
class Migration(migrations.Migration):
dependencies = [
("attachments", "0005_attachment_open_graph_image"),
]
operations = [
migrations.AlterField(
model_name="attachment",
name="original_file",
field=attachments.models.AbsoluteUrlFileField(upload_to=""),
),
migrations.AlterField(
model_name="attachment",
name="processed_file",
field=attachments.models.AbsoluteUrlFileField(
blank=True, null=True, upload_to=""
),
),
]