From 6e8c1713e0f415cca094b445bb2ea090999c4bfd Mon Sep 17 00:00:00 2001 From: Ernesto Rico-Schmidt <e.rico.schmidt@gmail.com> Date: Fri, 12 Apr 2013 17:29:41 +0200 Subject: [PATCH] added automation ID for programslots and shows. --- program/models.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/program/models.py b/program/models.py index c176fdae..448b742f 100644 --- a/program/models.py +++ b/program/models.py @@ -227,6 +227,7 @@ class Show(models.Model): email = models.EmailField(_("E-Mail"), blank=True, null=True) website = models.URLField(_("Website"), blank=True, null=True) cba_series_id = models.IntegerField(_("CBA series ID"), blank=True, null=True) + automation_id = models.IntegerField(_("Automation ID"), blank=True, null=True) created = models.DateTimeField(auto_now_add=True, editable=False) last_updated = models.DateTimeField(auto_now=True, editable=False) @@ -293,6 +294,7 @@ class ProgramSlot(models.Model): tend = models.TimeField(_("End time")) until = models.DateField(_("Last date")) is_repetition = models.BooleanField(_("Is repetition"), default=False) + automation_id = models.IntegerField(_("Automation ID"), blank=True, null=True) created = models.DateTimeField(auto_now_add=True, editable=False) last_updated = models.DateTimeField(auto_now=True, editable=False) -- GitLab