mirror of
https://github.com/django/django.git
synced 2025-10-12 08:19:10 +00:00
git-svn-id: http://code.djangoproject.com/svn/django/branches/soc2009/multidb@10893 bcc190cf-cafb-0310-a4f2-bffc1f526a37
19 lines
669 B
Python
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')
|