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

removed cba_entry_id and cba_series_id from Show and Time Slot models

parent 78309055
No related branches found
No related tags found
No related merge requests found
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('program', '0005_programslot_is_active'),
]
operations = [
migrations.RemoveField(
model_name='note',
name='cba_entry_id',
),
]
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('program', '0006_note_remove_cba_entry_id'),
]
operations = [
migrations.RemoveField(
model_name='show',
name='cba_series_id',
),
]
...@@ -244,7 +244,6 @@ class Show(models.Model): ...@@ -244,7 +244,6 @@ class Show(models.Model):
email = models.EmailField(_("E-Mail"), blank=True, null=True) email = models.EmailField(_("E-Mail"), blank=True, null=True)
website = models.URLField(_("Website"), blank=True, null=True) website = models.URLField(_("Website"), blank=True, null=True)
is_active = models.BooleanField(_("Is active"), default=True, editable=False) is_active = models.BooleanField(_("Is active"), default=True, editable=False)
cba_series_id = models.IntegerField(_("CBA series ID"), blank=True, null=True)
automation_id = models.IntegerField(_("Automation ID"), blank=True, null=True, choices=get_automation_id_choices()) automation_id = models.IntegerField(_("Automation ID"), blank=True, null=True, choices=get_automation_id_choices())
created = models.DateTimeField(auto_now_add=True, editable=False) created = models.DateTimeField(auto_now_add=True, editable=False)
last_updated = models.DateTimeField(auto_now=True, editable=False) last_updated = models.DateTimeField(auto_now=True, editable=False)
...@@ -483,7 +482,6 @@ class Note(models.Model): ...@@ -483,7 +482,6 @@ class Note(models.Model):
title = models.CharField(_("Title"), max_length=128) title = models.CharField(_("Title"), max_length=128)
content = tinymce_models.HTMLField(_("Content")) content = tinymce_models.HTMLField(_("Content"))
status = models.IntegerField(_("Status"), choices=STATUS_CHOICES, default=1) status = models.IntegerField(_("Status"), choices=STATUS_CHOICES, default=1)
cba_entry_id = models.IntegerField(_("CBA entry ID"), blank=True, null=True)
start = models.DateTimeField(editable=False) start = models.DateTimeField(editable=False)
show = models.ForeignKey(Show, editable=False, related_name='notes') show = models.ForeignKey(Show, editable=False, related_name='notes')
created = models.DateTimeField(auto_now_add=True, editable=False) created = models.DateTimeField(auto_now_add=True, editable=False)
......
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