Ticket #8713: core-management-sql.diff

File core-management-sql.diff, 523 bytes (added by Piotr Lewandowski <django@…>, 16 years ago)
  • django/core/management/sql.py

     
    6262    "Returns a list of the DROP TABLE SQL statements for the given app."
    6363    from django.db import connection, models
    6464    from django.db.backends.util import truncate_name
    65     from django.contrib.contenttypes import generic
    6665
    6766    # This should work even if a connection isn't available
    6867    try:
Back to Top