forked from rc/aircox
cfr #121 Co-authored-by: Christophe Siraut <d@tobald.eu.org> Co-authored-by: bkfox <thomas bkfox net> Co-authored-by: Thomas Kairos <thomas@bkfox.net> Reviewed-on: rc/aircox#131 Co-authored-by: Chris Tactic <ctactic@noreply.git.radiocampus.be> Co-committed-by: Chris Tactic <ctactic@noreply.git.radiocampus.be>
37 lines
1.2 KiB
Python
37 lines
1.2 KiB
Python
# Generated by Django 4.2.9 on 2024-03-25 20:23
|
|
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
dependencies = [
|
|
("aircox", "0024_rename_playlist_editor_columns_usersettings_tracklist_editor_columns_and_more"),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name="sound",
|
|
name="is_removed",
|
|
field=models.BooleanField(default=False, help_text="file has been removed", verbose_name="removed"),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="sound",
|
|
name="is_downloadable",
|
|
field=models.BooleanField(
|
|
default=False,
|
|
help_text="sound can be downloaded by visitors (sound must be public)",
|
|
verbose_name="downloadable",
|
|
),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="sound",
|
|
name="is_public",
|
|
field=models.BooleanField(default=False, help_text="sound is available as podcast", verbose_name="public"),
|
|
),
|
|
migrations.AlterField(
|
|
model_name="sound",
|
|
name="type",
|
|
field=models.SmallIntegerField(choices=[(0, "other"), (1, "archive"), (2, "excerpt")], verbose_name="type"),
|
|
),
|
|
]
|