1
0
mirror of https://github.com/django/django.git synced 2025-10-12 08:19:10 +00:00

19 lines
669 B
Python

from optparse import make_option
from django.core.management.base import AppCommand
from django.core.management.sql import sql_indexes
from django.db import connections
class Command(AppCommand):
help = "Prints the CREATE INDEX SQL statements for the given model module name(s)."
option_list = AppCommand.option_list + (
make_option('--database', action='store', dest='database',
default='default', help='Selects what database to print the SQL for.'),
)
output_transaction = True
def handle_app(self, app, **options):
return u'\n'.join(sql_indexes(app, self.style, connections[options['database']])).encode('utf-8')