19 lines
554 B
Python
19 lines
554 B
Python
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("blog", "0006_post_meta_description_post_meta_description_ar_ar_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="post",
|
|
name="is_static_page",
|
|
field=models.BooleanField(
|
|
default=False,
|
|
help_text="is this a post for a page with static URL (e.g. `/help/delivery`)?",
|
|
verbose_name="is static page",
|
|
),
|
|
),
|
|
]
|