File tree Expand file tree Collapse file tree 2 files changed +26
-7
lines changed Expand file tree Collapse file tree 2 files changed +26
-7
lines changed Original file line number Diff line number Diff line change 1516
1516
"workflow": 1
1517
1517
}
1518
1518
},
1519
- {
1520
- "model": "wagtailcore.workflowcontenttype",
1521
- "pk": 4,
1522
- "fields": {
1523
- "workflow": 1
1524
- }
1525
- },
1526
1519
{
1527
1520
"model": "wagtailcore.workflowtask",
1528
1521
"pk": 1,
Original file line number Diff line number Diff line change
1
+ # Generated by Django 5.0.8 on 2024-08-15 17:22
2
+
3
+ import django .db .models .deletion
4
+ from django .db import migrations , models
5
+
6
+
7
+ class Migration (migrations .Migration ):
8
+
9
+ dependencies = [
10
+ ("base" , "0020_alter_footertext_options" ),
11
+ ("wagtailcore" , "0094_alter_page_locale" ),
12
+ ]
13
+
14
+ operations = [
15
+ migrations .AlterField (
16
+ model_name = "footertext" ,
17
+ name = "locale" ,
18
+ field = models .ForeignKey (
19
+ editable = False ,
20
+ on_delete = django .db .models .deletion .PROTECT ,
21
+ related_name = "+" ,
22
+ to = "wagtailcore.locale" ,
23
+ verbose_name = "locale" ,
24
+ ),
25
+ ),
26
+ ]
You can’t perform that action at this time.
0 commit comments