-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔀 Merge pull request #164 from wdr-data/main
Prod merge: More bugfixes
- Loading branch information
Showing
4 changed files
with
90 additions
and
1 deletion.
There are no files selected for viewing
78 changes: 78 additions & 0 deletions
78
okr/migrations/0086_alter_youtubetrafficsource_source_type_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,78 @@ | ||
# Generated by Django 4.2.5 on 2024-01-25 11:07 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("okr", "0085_alter_tiktokdata_videos"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name="youtubetrafficsource", | ||
name="source_type", | ||
field=models.CharField( | ||
choices=[ | ||
("advertising", "Werbung"), | ||
("annotation", "Annotation"), | ||
("campaign_card", "Kampagnenkarte"), | ||
("end_screen", "Endscreen"), | ||
("ext_url", "Externe URL"), | ||
("no_link_embedded", "Kein Link (eingebettet)"), | ||
("no_link_other", "Kein Link (sonstiges)"), | ||
("notification", "Benachrichtigung"), | ||
("playlist", "Playlist"), | ||
("promoted", "Promoted"), | ||
("related_video", "Related"), | ||
("shorts", "Shorts"), | ||
("sound_page", "Soundpage"), | ||
("subscriber", "Abonnent*in"), | ||
("yt_channel", "Youtube-Kanal"), | ||
("yt_other_page", "Sonstige Youtube-Seite"), | ||
("yt_playlist_page", "Youtube Playlist-Seite"), | ||
("yt_search", "Youtube-Suche"), | ||
("hashtags", "Hashtags"), | ||
("shorts_content_links", "Shorts Content Links"), | ||
], | ||
max_length=40, | ||
verbose_name="Source Type", | ||
), | ||
), | ||
migrations.AlterField( | ||
model_name="youtubevideotrafficsource", | ||
name="source_type", | ||
field=models.CharField( | ||
choices=[ | ||
("0: Direct or unknown", "Direct or unknown"), | ||
("1: YouTube advertising", "YouTube advertising"), | ||
("3: Browse features", "Browse features"), | ||
("4: YouTube channels", "YouTube channels"), | ||
("5: YouTube search", "YouTube search"), | ||
("7: Suggested videos", "Suggested videos"), | ||
("8: Other YouTube features", "Other YouTube features"), | ||
("9: External", "External"), | ||
("11: Video cards and annotations", "Video cards and annotations"), | ||
("14: Playlists", "Playlists"), | ||
("17: Notifications", "Notifications"), | ||
("18: Playlist pages", "Playlist pages"), | ||
( | ||
"19: Programming from claimed content", | ||
"Programming from claimed content", | ||
), | ||
("20: Interactive video endscreen", "Interactive video endscreen"), | ||
("23: Stories", "Stories"), | ||
("24: Shorts", "Shorts"), | ||
("25: Product Pages", "Product Pages"), | ||
("26: Hashtag Pages", "Hashtag Pages"), | ||
("27: Sound Pages", "Sound Pages"), | ||
("28: Live redirect", "Live redirect"), | ||
("30: Remixed video", "Remixed video"), | ||
("31: Vertical live feed", "Vertical live feed"), | ||
("32: Related video", "Related video"), | ||
], | ||
max_length=40, | ||
verbose_name="Source Type", | ||
), | ||
), | ||
] |
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
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
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