Skip to content
Snippets Groups Projects
Verified Commit 63107926 authored by Ernesto Rico Schmidt's avatar Ernesto Rico Schmidt
Browse files

fix: add missing migration

parent 2e0b3270
No related branches found
No related tags found
No related merge requests found
Pipeline #8395 passed
# Generated by Django 4.2.14 on 2024-07-31 00:21
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("program", "0114_alter_note_options"),
]
operations = [
migrations.AlterModelOptions(
name="note",
options={
"ordering": ("timeslot",),
"permissions": [
("edit__note__cba_id", "Can edit CBA id field"),
("edit__note__content", "Can edit content field"),
("edit__note__contributors", "Can edit contributors field"),
("edit__note__image", "Can edit image field"),
("edit__note__languages", "Can edit languages field"),
("edit__note__links", "Can edit links field"),
("edit__note__playlist", "Can edit playlist field"),
("edit__note__summary", "Can edit summary field"),
("edit__note__tags", "Can edit tags field"),
("edit__note__title", "Can edit title field"),
("edit__note__topics", "Can edit topics field"),
("create_note", "Can create note"),
("update_note", "Can update note"),
],
},
),
migrations.AlterModelOptions(
name="schedule",
options={
"ordering": ("first_date", "start_time"),
"permissions": [
("edit__schedule__default_playlist_id", "Can edit default media-source")
],
},
),
migrations.AlterModelOptions(
name="show",
options={
"ordering": ("slug",),
"permissions": [
("display__show__internal_note", "Can display internal note field"),
("edit__show__categories", "Can edit categories field"),
("edit__show__cba_series_id", "Can edit cba series id field"),
("edit__show__default_playlist_id", "Can edit default media-source"),
("edit__show__description", "Can edit description field"),
("edit__show__email", "Can edit email field"),
("edit__show__funding_categories", "Can edit funding categories field"),
("edit__show__hosts", "Can edit hosts field"),
("edit__show__image", "Can edit image field"),
("edit__show__internal_note", "Can edit internal note field"),
("edit__show__is_active", "Can edit is active field"),
("edit__show__languages", "Can edit languages field"),
("edit__show__links", "Can edit links field"),
("edit__show__logo", "Can edit logo field"),
("edit__show__music_focuses", "Can edit music focus field"),
("edit__show__name", "Can edit name field"),
("edit__show__owners", "Can edit owners field"),
("edit__show__predecessor", "Can edit predecessor field"),
("edit__show__short_description", "Can edit short description field"),
("edit__show__slug", "Can edit slug field"),
("edit__show__topics", "Can edit topics field"),
("edit__show__type", "Can edit type field"),
("update_show", "Can update show"),
],
},
),
migrations.AlterModelOptions(
name="timeslot",
options={
"ordering": ("start", "end"),
"permissions": [
("edit__timeslot__memo", "Can edit memo field"),
("edit__timeslot__playlist_id", "Can edit media-source"),
("edit__timeslot__repetition_of", "Can edit repetition of field"),
],
},
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment