PYRSS-Website/apps/home/migrations/0017_content_blocked.py
Corban-Lee Jones 05efa846f1
Some checks failed
Build and Push Docker Image / build (push) Has been cancelled
update Content model
2024-11-02 00:28:24 +00:00

19 lines
420 B
Python

# Generated by Django 5.0.4 on 2024-11-01 23:15
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('home', '0016_content_item_author_content_item_author_url_and_more'),
]
operations = [
migrations.AddField(
model_name='content',
name='blocked',
field=models.BooleanField(default=False),
),
]