From b303d760e6589d7ff74e21e8948da346717564c3 Mon Sep 17 00:00:00 2001 From: Aaron Kurtz Date: Mon, 7 Dec 2015 01:51:16 -0800 Subject: [PATCH] Remove 'cache_table' from required params Starting in Django 1.7, the createcachetable command looks for cache table names in the CACHES settings dictionary, so cache_table is no longer required, but is still allowed. --- web_infrastructure/django_manage.py | 1 - 1 file changed, 1 deletion(-) diff --git a/web_infrastructure/django_manage.py b/web_infrastructure/django_manage.py index 660f55fd9f0..d62378d15c2 100644 --- a/web_infrastructure/django_manage.py +++ b/web_infrastructure/django_manage.py @@ -183,7 +183,6 @@ def main(): command_required_param_map = dict( loaddata=('fixtures', ), - createcachetable=('cache_table', ), ) # forces --noinput on every command that needs it