Changes between Initial Version and Version 1 of Ticket #19659
- Timestamp:
- Jan 23, 2013, 1:18:33 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #19659 – Description
initial v1 1 Depending on the order of apps in INSTALLED_APPS and what is already in the db ForeignKeys are not generated as foreign keys but only as integers:1 Depending on the order of apps in INSTALLED_APPS and what is already in the db ForeignKeys are not generated as foreign keys but only as the datatype which the foreign key should refer to: 2 2 3 3 {{{ … … 59 59 60 60 Can we do something against this? Can this also happen with other databases and as such threaten referential integrity? 61 62 EDIT:// MySQL and postgres seem to do what they should, we could enable http://www.sqlite.org/foreignkeys.html for SQLite versions which does support that :)