Skip to content

Commit

Permalink
Separate migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
ramram-mf committed Sep 23, 2024
1 parent 31730f9 commit a527308
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Generated by Django 4.2.15 on 2024-09-23 19:40

from django.db import migrations


class Migration(migrations.Migration):

dependencies = [
("wagtailpages", "0162_alter_articlepage_body"),
]

operations = [
migrations.RemoveField(
model_name="focusarea",
name="page",
),
]
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 4.2.15 on 2024-09-20 09:07
# Generated by Django 4.2.15 on 2024-09-23 19:42

import wagtail.blocks
import wagtail.documents.blocks
Expand All @@ -11,14 +11,10 @@
class Migration(migrations.Migration):

dependencies = [
("wagtailpages", "0162_alter_articlepage_body"),
("wagtailpages", "0163_remove_focusarea_page"),
]

operations = [
migrations.RemoveField(
model_name="focusarea",
name="page",
),
migrations.AddField(
model_name="homepage",
name="hero_intro_body",
Expand Down

0 comments on commit a527308

Please sign in to comment.