Fixes: 1) Correct import order in `payments.admin`. Extra: 1) Update `productimage.priority` field in `core` app with default value and help text; 2) Include `integration_path` in `Vendor` admin additional fields.
22 lines
602 B
Python
22 lines
602 B
Python
# Generated by Django 5.2 on 2025-10-21 09:24
|
|
|
|
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",
|
|
),
|
|
),
|
|
]
|