Changeset 8157
- Timestamp:
- 07/31/08 02:53:55 (4 months ago)
- Files:
-
- django/trunk/django/core/management/sql.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/django/core/management/sql.py
r8136 r8157 182 182 opts = model._meta 183 183 for f in opts.local_many_to_many: 184 if isinstance(f.rel, generic.GenericRel):184 if not f.creates_table: 185 185 continue 186 186 if cursor and table_name_converter(f.m2m_db_table()) in table_names:
