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

feat: rename playout field

parent 469a5efe
No related branches found
No related tags found
No related merge requests found
# Generated by Django 4.2.11 on 2024-04-12 21:34
from django.db import migrations
class Migration(migrations.Migration):
dependencies = [
("program", "0088_radiosettings"),
]
operations = [
migrations.RenameField(
model_name="radiosettings",
old_name="playout_channels",
new_name="line_in_channels",
),
]
...@@ -533,7 +533,7 @@ class RadioSettings(models.Model): ...@@ -533,7 +533,7 @@ class RadioSettings(models.Model):
blank=True, default=list, help_text="JSON array of strings", verbose_name="CBA domains" blank=True, default=list, help_text="JSON array of strings", verbose_name="CBA domains"
) )
fallback_show = models.ForeignKey(Show, blank=True, null=True, on_delete=models.CASCADE) fallback_show = models.ForeignKey(Show, blank=True, null=True, on_delete=models.CASCADE)
playout_channels = models.JSONField(blank=True, default=dict, help_text="JSON key/value pairs") line_in_channels = models.JSONField(blank=True, default=dict, help_text="JSON key/value pairs")
station_logo = models.ForeignKey(Image, blank=True, null=True, on_delete=models.CASCADE) station_logo = models.ForeignKey(Image, blank=True, null=True, on_delete=models.CASCADE)
station_name = models.CharField(max_length=256, unique=True) station_name = models.CharField(max_length=256, unique=True)
station_website = models.URLField() station_website = models.URLField()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment