mirror of
https://github.com/Fluffy-Bean/Fluffys-website.git
synced 2024-12-29 10:46:06 +00:00
18 lines
392 B
Python
18 lines
392 B
Python
|
# Generated by Django 4.2.2 on 2023-06-18 17:18
|
||
|
|
||
|
from django.db import migrations, models
|
||
|
|
||
|
|
||
|
class Migration(migrations.Migration):
|
||
|
dependencies = [
|
||
|
("articles", "0003_alter_article_thumb"),
|
||
|
]
|
||
|
|
||
|
operations = [
|
||
|
migrations.AddField(
|
||
|
model_name="article",
|
||
|
name="published",
|
||
|
field=models.BooleanField(default=False),
|
||
|
),
|
||
|
]
|