Ticket #14356: obsolete_imports.diff
File obsolete_imports.diff, 653 bytes (added by , 14 years ago) |
---|
-
django/core/management/sql.py
2 2 import re 3 3 4 4 from django.conf import settings 5 from django.contrib.contenttypes import generic6 5 from django.core.management.base import CommandError 7 from django.dispatch import dispatcher8 6 from django.db import models 9 7 from django.db.models import get_models 10 from django.db.backends.util import truncate_name11 8 12 9 def sql_create(app, style, connection): 13 10 "Returns a list of the CREATE TABLE SQL statements for the given app."