app/django/core/management/commands/sqlindexes.py
author Sverre Rabbelier <srabbelier@gmail.com>
Sat, 21 Mar 2009 13:07:12 +0000
changeset 1978 a8810c038500
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Use the new as_email tag for user profile Patch by: Sverre Rabbelier

from django.core.management.base import AppCommand

class Command(AppCommand):
    help = "Prints the CREATE INDEX SQL statements for the given model module name(s)."

    output_transaction = True

    def handle_app(self, app, **options):
        from django.core.management.sql import sql_indexes
        return u'\n'.join(sql_indexes(app, self.style)).encode('utf-8')