mirror of
https://github.com/django/django.git
synced 2025-11-07 07:15:35 +00:00
Rolled back r16510, r16513 and r16514 because it wasn't ready.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@16515 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
@@ -1,8 +1,7 @@
|
||||
from optparse import make_option
|
||||
|
||||
from django.core.management.base import LabelCommand
|
||||
from django.core.cache.backends.db import BaseDatabaseCache
|
||||
from django.db import connections, router, transaction, models, DEFAULT_DB_ALIAS
|
||||
from django.db import connections, transaction, models, DEFAULT_DB_ALIAS
|
||||
|
||||
class Command(LabelCommand):
|
||||
help = "Creates the table needed to use the SQL cache backend."
|
||||
@@ -19,11 +18,8 @@ class Command(LabelCommand):
|
||||
requires_model_validation = False
|
||||
|
||||
def handle_label(self, tablename, **options):
|
||||
db = options.get('database', DEFAULT_DB_ALIAS)
|
||||
cache = BaseDatabaseCache(tablename, {})
|
||||
if not router.allow_syncdb(db, cache.cache_model_class):
|
||||
return
|
||||
connection = connections[db]
|
||||
alias = options.get('database', DEFAULT_DB_ALIAS)
|
||||
connection = connections[alias]
|
||||
fields = (
|
||||
# "key" is a reserved word in MySQL, so use "cache_key" instead.
|
||||
models.CharField(name='cache_key', max_length=255, unique=True, primary_key=True),
|
||||
@@ -54,4 +50,4 @@ class Command(LabelCommand):
|
||||
curs.execute("\n".join(full_statement))
|
||||
for statement in index_output:
|
||||
curs.execute(statement)
|
||||
transaction.commit_unless_managed(using=db)
|
||||
transaction.commit_unless_managed(using=alias)
|
||||
|
||||
Reference in New Issue
Block a user