app/django/core/management/commands/sqlcustom.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Tue, 11 Nov 2008 21:07:38 +0000
changeset 474 0bf5af57cef9
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Move all the properties from Person model to Role model. Update all the comments and docs according to the changes. Remove Person model. Patch by: Pawel Solyga

from django.core.management.base import AppCommand

class Command(AppCommand):
    help = "Prints the custom table modifying SQL statements for the given app name(s)."

    output_transaction = True

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