# Generated by Django 4.2.13 on 2024-07-22 20:04 from django.db import migrations class Migration(migrations.Migration): dependencies = [ ("program", "0113_alter_note_contributors_alter_timeslot_playlist_id"), ] 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 contributor field"), ("edit__note__image", "Can edit image field"), ("edit__note__languages", "Can edit language 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 topic field"), ("create_note", "Can create note"), ("update_note", "Can update note"), ], }, ), ]