diff --git a/program/management/commands/update_hosts.py b/program/management/commands/update_hosts.py
deleted file mode 100644
index 3cb143bd0290f14be209482d09d280ecd36487ee..0000000000000000000000000000000000000000
--- a/program/management/commands/update_hosts.py
+++ /dev/null
@@ -1,29 +0,0 @@
-from django.core.management.base import NoArgsCommand
-
-from program.models import Host
-
-
-class Command(NoArgsCommand):
-    help = 'update host by setting is_active'
-
-    def handle_noargs(self, **options):
-        activated = 0
-        deactivated = 0
-
-        for host in Host.objects.all():
-            active_shows = 0
-            for show in host.shows.all():
-                if show.is_active:
-                    active_shows += 1
-                else:
-                    active_shows -= 1
-
-            host.is_active = active_shows > 0
-            host.save()
-
-            if host.is_active:
-                activated += 1
-            else:
-                deactivated += 1
-
-        print "%s hosts activated, %s hosts de-activated " % (activated, deactivated)
diff --git a/program/management/commands/update_programslots.py b/program/management/commands/update_programslots.py
deleted file mode 100644
index 6f7ec90a5e38963cc810f622e92f06f197a65162..0000000000000000000000000000000000000000
--- a/program/management/commands/update_programslots.py
+++ /dev/null
@@ -1,15 +0,0 @@
-from django.core.management.base import NoArgsCommand
-
-from program.models import ProgramSlot
-
-from datetime import datetime
-
-
-class Command(NoArgsCommand):
-    help = 'update programslots by setting is_active'
-
-    def handle_noargs(self, **options):
-        deactivated = ProgramSlot.objects.filter(until__lt=datetime.now()).update(is_active=False)
-        activated = ProgramSlot.objects.filter(until__gt=datetime.now()).update(is_active=True)
-
-        print "%s program slots activated, %s program slots de-activated" % (activated, deactivated)
diff --git a/program/management/commands/update_shows.py b/program/management/commands/update_shows.py
deleted file mode 100644
index 0dafb8837cb47a44bb6aff5f75e8398cc64c1f28..0000000000000000000000000000000000000000
--- a/program/management/commands/update_shows.py
+++ /dev/null
@@ -1,15 +0,0 @@
-from django.core.management.base import NoArgsCommand
-
-from program.models import Show
-
-from datetime import datetime
-
-
-class Command(NoArgsCommand):
-    help = 'update shows by setting is_active'
-
-    def handle_noargs(self, **options):
-        deactivated = Show.objects.exclude(id=1).filter(programslots__until__lt=datetime.now()).update(is_active=False)
-        activated = Show.objects.exclude(id=1).filter(programslots__until__gt=datetime.now()).distinct().update(is_active=True)
-
-        print "%s shows activated, %s shows de-activated" % (activated, deactivated)