-
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.
Remove UUID field from pages (#1733)
- Loading branch information
1 parent
2e13afe
commit e8b0a80
Showing
9 changed files
with
204 additions
and
3 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
...articles/migrations/0111_remove_articleindexpage_uuid_remove_articlepage_uuid_and_more.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,30 @@ | ||
# Generated by Django 5.0.8 on 2024-10-22 10:10 | ||
# etna:allowRemoveField | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("articles", "0110_alter_articlepage_body_alter_focusedarticlepage_body"), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name="articleindexpage", | ||
name="uuid", | ||
), | ||
migrations.RemoveField( | ||
model_name="articlepage", | ||
name="uuid", | ||
), | ||
migrations.RemoveField( | ||
model_name="focusedarticlepage", | ||
name="uuid", | ||
), | ||
migrations.RemoveField( | ||
model_name="recordarticlepage", | ||
name="uuid", | ||
), | ||
] |
26 changes: 26 additions & 0 deletions
26
etna/blog/migrations/0004_remove_blogindexpage_uuid_remove_blogpage_uuid_and_more.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,26 @@ | ||
# Generated by Django 5.0.8 on 2024-10-22 10:10 | ||
# etna:allowRemoveField | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("blog", "0003_blogpostpage_hero_image_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name="blogindexpage", | ||
name="uuid", | ||
), | ||
migrations.RemoveField( | ||
model_name="blogpage", | ||
name="uuid", | ||
), | ||
migrations.RemoveField( | ||
model_name="blogpostpage", | ||
name="uuid", | ||
), | ||
] |
38 changes: 38 additions & 0 deletions
38
etna/collections/migrations/0060_remove_explorerindexpage_uuid_and_more.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,38 @@ | ||
# Generated by Django 5.0.8 on 2024-10-22 10:10 | ||
# etna:allowRemoveField | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("collections", "0059_explorerindexpage_twitter_og_description_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name="explorerindexpage", | ||
name="uuid", | ||
), | ||
migrations.RemoveField( | ||
model_name="highlightgallerypage", | ||
name="uuid", | ||
), | ||
migrations.RemoveField( | ||
model_name="timeperiodexplorerindexpage", | ||
name="uuid", | ||
), | ||
migrations.RemoveField( | ||
model_name="timeperiodexplorerpage", | ||
name="uuid", | ||
), | ||
migrations.RemoveField( | ||
model_name="topicexplorerindexpage", | ||
name="uuid", | ||
), | ||
migrations.RemoveField( | ||
model_name="topicexplorerpage", | ||
name="uuid", | ||
), | ||
] |
22 changes: 22 additions & 0 deletions
22
etna/cookies/migrations/0002_remove_cookiedetailspage_uuid_and_more.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,22 @@ | ||
# Generated by Django 5.0.8 on 2024-10-22 10:10 | ||
# etna:allowRemoveField | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("cookies", "0001_initial"), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name="cookiedetailspage", | ||
name="uuid", | ||
), | ||
migrations.RemoveField( | ||
model_name="cookiespage", | ||
name="uuid", | ||
), | ||
] |
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
22 changes: 22 additions & 0 deletions
22
etna/generic_pages/migrations/0038_remove_generalpage_uuid_remove_hubpage_uuid.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,22 @@ | ||
# Generated by Django 5.0.8 on 2024-10-22 10:10 | ||
# etna:allowRemoveField | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("generic_pages", "0037_alter_generalpage_body"), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name="generalpage", | ||
name="uuid", | ||
), | ||
migrations.RemoveField( | ||
model_name="hubpage", | ||
name="uuid", | ||
), | ||
] |
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,18 @@ | ||
# Generated by Django 5.0.8 on 2024-10-22 10:10 | ||
# etna:allowRemoveField | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("home", "0029_homepage_twitter_og_description_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name="homepage", | ||
name="uuid", | ||
), | ||
] |
22 changes: 22 additions & 0 deletions
22
etna/people/migrations/0013_remove_peopleindexpage_uuid_remove_personpage_uuid.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,22 @@ | ||
# Generated by Django 5.0.8 on 2024-10-22 10:10 | ||
# etna:allowRemoveField | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("people", "0012_shopitem"), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name="peopleindexpage", | ||
name="uuid", | ||
), | ||
migrations.RemoveField( | ||
model_name="personpage", | ||
name="uuid", | ||
), | ||
] |
26 changes: 26 additions & 0 deletions
26
etna/whatson/migrations/0013_remove_eventpage_uuid_remove_exhibitionpage_uuid_and_more.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,26 @@ | ||
# Generated by Django 5.0.8 on 2024-10-22 10:10 | ||
# etna:allowRemoveField | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("whatson", "0012_eventpage_twitter_og_description_and_more"), | ||
] | ||
|
||
operations = [ | ||
migrations.RemoveField( | ||
model_name="eventpage", | ||
name="uuid", | ||
), | ||
migrations.RemoveField( | ||
model_name="exhibitionpage", | ||
name="uuid", | ||
), | ||
migrations.RemoveField( | ||
model_name="whatsonpage", | ||
name="uuid", | ||
), | ||
] |