mirror of
https://github.com/Fluffy-Bean/Fluffys-website.git
synced 2024-12-28 18:26:05 +00:00
18 lines
420 B
Python
18 lines
420 B
Python
# Generated by Django 4.2.2 on 2023-06-19 16:44
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("articles", "0004_article_published"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AlterField(
|
|
model_name="article",
|
|
name="thumb",
|
|
field=models.ImageField(blank=True, default="default.png", upload_to=""),
|
|
),
|
|
]
|