Skip to content

Commit

Permalink
add migrations for sponsorblock categories reworking, part of #657
Browse files Browse the repository at this point in the history
  • Loading branch information
meeb committed Jan 29, 2025
1 parent 30dbb10 commit 90eca25
Showing 1 changed file with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Generated by Django 3.2.25 on 2025-01-29 06:14

from django.db import migrations
import sync.fields


class Migration(migrations.Migration):

dependencies = [
('sync', '0026_alter_source_sub_langs'),
]

operations = [
migrations.AlterField(
model_name='source',
name='sponsorblock_categories',
field=sync.fields.CommaSepChoiceField(default='all', help_text='Select the sponsorblocks you want to enforce', possible_choices=[('sponsor', 'Sponsor'), ('intro', 'Intermission/Intro Animation'), ('outro', 'Endcards/Credits'), ('selfpromo', 'Unpaid/Self Promotion'), ('preview', 'Preview/Recap'), ('filler', 'Filler Tangent'), ('interaction', 'Interaction Reminder'), ('music_offtopic', 'Non-Music Section')], verbose_name=''),
),
]

0 comments on commit 90eca25

Please sign in to comment.