app/django/core/management/commands/sqlclear.py
author Pawel Solyga <Pawel.Solyga@gmail.com>
Wed, 04 Mar 2009 18:16:20 +0000
changeset 1635 b7e2d494aa11
parent 323 ff1a9aa48cfd
permissions -rw-r--r--
Remove unused imports and fix too long lines in soc.views.models.site module. Patch by: Pawel Solyga Reviewed by: to-be-reviewed

from django.core.management.base import AppCommand

class Command(AppCommand):
    help = "Prints the DROP TABLE SQL statements for the given app name(s)."

    output_transaction = True

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