Skip to content

Commit

Permalink
add missing migration
Browse files Browse the repository at this point in the history
  • Loading branch information
SebastienReuiller committed Sep 19, 2024
1 parent 7dbf7bb commit b2603fa
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions blog/migrations/0029_alter_category_locale.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Generated by Django 4.2.15 on 2024-09-19 18:33

import django.db.models.deletion
from django.db import migrations, models


class Migration(migrations.Migration):
dependencies = [
("wagtailcore", "0094_alter_page_locale"),
("blog", "0028_alter_blogentrypage_body_alter_blogindexpage_body_and_more"),
]

operations = [
migrations.AlterField(
model_name="category",
name="locale",
field=models.ForeignKey(
editable=False,
on_delete=django.db.models.deletion.PROTECT,
related_name="+",
to="wagtailcore.locale",
verbose_name="locale",
),
),
]

0 comments on commit b2603fa

Please sign in to comment.