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

feat: add fallback default pool

parent da859daf
No related branches found
No related tags found
No related merge requests found
# Generated by Django 4.2.13 on 2024-06-03 16:53
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
("program", "0092_radiosettings_micro_show"),
]
operations = [
migrations.AddField(
model_name="radiosettings",
name="fallback_default_pool",
field=models.CharField(blank=True, max_length=32),
),
]
...@@ -553,6 +553,7 @@ class RadioSettings(models.Model): ...@@ -553,6 +553,7 @@ class RadioSettings(models.Model):
cba_domains = models.JSONField( cba_domains = models.JSONField(
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_default_pool = models.CharField(blank=True, max_length=32)
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)
host_image_aspect_ratio = ImageAspectRadioField(default="1:1") host_image_aspect_ratio = ImageAspectRadioField(default="1:1")
host_image_shape = ImageShapeField(default="round") host_image_shape = ImageShapeField(default="round")
......
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