24 lines
628 B
Python
24 lines
628 B
Python
# Generated by Django 4.0.5 on 2022-07-31 22:37
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('main', '0004_alter_grandprixw_content_alter_post_content'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='post',
|
|
name='published',
|
|
field=models.BooleanField(default=True, verbose_name='Wpis opublikowany'),
|
|
),
|
|
migrations.AddField(
|
|
model_name='post',
|
|
name='show_title',
|
|
field=models.BooleanField(default=True, verbose_name='Pokaż tytuł'),
|
|
),
|
|
]
|