mirror of
https://github.com/Fluffy-Bean/Fluffys-website.git
synced 2025-01-14 18:25:17 +00:00
18 lines
408 B
Python
18 lines
408 B
Python
|
# Generated by Django 4.2.2 on 2023-06-17 14:24
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
dependencies = [
|
||
|
("articles", "0001_initial"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name="article",
|
||
|
name="thumb",
|
||
|
field=models.ImageField(blank=True, default="default.png", upload_to=""),
|
||
|
),
|
||
|
]
|