-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
381fc0d
commit a3375de
Showing
4 changed files
with
68 additions
and
3 deletions.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
etna/articles/migrations/0105_alter_recordarticlepage_featured_article.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Generated by Django 5.0.4 on 2024-04-24 09:20 | ||
# etna:allowAlterField | ||
|
||
import django.db.models.deletion | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("articles", "0104_alter_articlepage_body_alter_focusedarticlepage_body"), | ||
("wagtailcore", "0091_remove_revision_submitted_for_moderation"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="recordarticlepage", | ||
name="featured_article", | ||
field=models.ForeignKey( | ||
blank=True, | ||
help_text="Select a page to display in the featured area. This can be an Article, Focused Article or Record Article.", | ||
null=True, | ||
on_delete=django.db.models.deletion.SET_NULL, | ||
related_name="+", | ||
to="wagtailcore.page", | ||
verbose_name="featured article", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
32 changes: 32 additions & 0 deletions
32
etna/collections/migrations/0056_alter_highlightgallerypage_featured_article.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Generated by Django 5.0.4 on 2024-04-24 09:20 | ||
# etna:allowAlterField | ||
|
||
import django.db.models.deletion | ||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
( | ||
"collections", | ||
"0055_remove_highlightgallerypage_featured_record_article_and_more", | ||
), | ||
("wagtailcore", "0091_remove_revision_submitted_for_moderation"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="highlightgallerypage", | ||
name="featured_article", | ||
field=models.ForeignKey( | ||
blank=True, | ||
help_text="Select a page to display in the featured area. This can be an Article, Focused Article or Record Article.", | ||
null=True, | ||
on_delete=django.db.models.deletion.SET_NULL, | ||
related_name="+", | ||
to="wagtailcore.page", | ||
verbose_name="featured article", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters