Changeset 2296
- Timestamp:
- 02/09/06 23:12:43 (3 years ago)
- Files:
-
- django/branches/magic-removal/AUTHORS (modified) (1 diff)
- django/branches/magic-removal/django/core/management.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/magic-removal/AUTHORS
r1979 r2296 67 67 Stuart Langridge <http://www.kryogenix.org/> 68 68 Eugene Lazutkin <http://lazutkin.com/blog/> 69 Christopher Lenz <http://www.cmlenz.net/> 69 70 limodou 70 71 Martin Maney <http://www.chipy.org/Martin_Maney> django/branches/magic-removal/django/core/management.py
r2278 r2296 225 225 else: 226 226 output.append("DROP TABLE %s;" % backend.quote_name(klass._meta.db_table)) 227 if references_to_delete.has_key(klass):227 if backend.supports_constraints and references_to_delete.has_key(klass): 228 228 for rel_class, f in references_to_delete[klass]: 229 229 table = rel_class._meta.db_table
