From 6e8c1713e0f415cca094b445bb2ea090999c4bfd Mon Sep 17 00:00:00 2001 From: Ernesto Rico-Schmidt Date: Fri, 12 Apr 2013 17:29:41 +0200 Subject: added automation ID for programslots and shows. diff --git a/program/models.py b/program/models.py index c176fda..448b742 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) -- cgit v0.10.2