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/src/attachments/migrations/0001_initial.py

31 lines
840 B
Python

# Generated by Django 3.1 on 2020-08-26 16:11
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies: list[tuple[str, str]] = []
operations = [
migrations.CreateModel(
name="Attachment",
fields=[
(
"id",
models.AutoField(
auto_created=True,
primary_key=True,
serialize=False,
verbose_name="ID",
),
),
("description", models.CharField(blank=True, max_length=500)),
("file", models.FileField(upload_to="")),
("processed", models.BooleanField(blank=True, default=False)),
],
),
]