2007-08-16 22:34:01 +08:00
|
|
|
from django.core.management.base import LabelCommand
|
2007-08-16 14:06:55 +08:00
|
|
|
|
2007-08-16 22:34:01 +08:00
|
|
|
class Command(LabelCommand):
|
2007-08-16 14:06:55 +08:00
|
|
|
help = "Creates the table needed to use the SQL cache backend."
|
2007-09-10 05:57:59 +08:00
|
|
|
args = "<tablename>"
|
2007-08-16 22:34:01 +08:00
|
|
|
label = 'tablename'
|
2007-08-16 14:06:55 +08:00
|
|
|
|
|
|
|
requires_model_validation = False
|
|
|
|
|
2007-08-16 22:34:01 +08:00
|
|
|
def handle_label(self, tablename, **options):
|
2007-08-20 09:03:33 +08:00
|
|
|
from django.db import connection, transaction, models
|
2007-08-16 14:06:55 +08:00
|
|
|
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),
|
|
|
|
models.TextField(name='value'),
|
|
|
|
models.DateTimeField(name='expires', db_index=True),
|
|
|
|
)
|
|
|
|
table_output = []
|
|
|
|
index_output = []
|
2007-08-20 09:03:33 +08:00
|
|
|
qn = connection.ops.quote_name
|
2007-08-16 14:06:55 +08:00
|
|
|
for f in fields:
|
2007-08-20 09:03:33 +08:00
|
|
|
field_output = [qn(f.name), f.db_type()]
|
2007-08-16 14:06:55 +08:00
|
|
|
field_output.append("%sNULL" % (not f.null and "NOT " or ""))
|
|
|
|
if f.primary_key:
|
|
|
|
field_output.append("PRIMARY KEY")
|
2008-06-30 12:46:59 +08:00
|
|
|
elif f.unique:
|
|
|
|
field_output.append("UNIQUE")
|
2007-08-16 14:06:55 +08:00
|
|
|
if f.db_index:
|
|
|
|
unique = f.unique and "UNIQUE " or ""
|
|
|
|
index_output.append("CREATE %sINDEX %s_%s ON %s (%s);" % \
|
2007-08-20 09:03:33 +08:00
|
|
|
(unique, tablename, f.name, qn(tablename),
|
|
|
|
qn(f.name)))
|
2007-08-16 14:06:55 +08:00
|
|
|
table_output.append(" ".join(field_output))
|
2007-08-20 09:03:33 +08:00
|
|
|
full_statement = ["CREATE TABLE %s (" % qn(tablename)]
|
2007-08-16 14:06:55 +08:00
|
|
|
for i, line in enumerate(table_output):
|
|
|
|
full_statement.append(' %s%s' % (line, i < len(table_output)-1 and ',' or ''))
|
|
|
|
full_statement.append(');')
|
|
|
|
curs = connection.cursor()
|
|
|
|
curs.execute("\n".join(full_statement))
|
|
|
|
for statement in index_output:
|
|
|
|
curs.execute(statement)
|
|
|
|
transaction.commit_unless_managed()
|