Changes between Initial Version and Version 1 of Ticket #18256, comment 4
- Timestamp:
- May 9, 2012, 7:44:32 AM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #18256, comment 4
initial v1 3 3 Please make sure all your MySQL tables are using the same storage engine (i.e. MyISM v. InnoDB). Specially tables that have ForeignKeys between them. 4 4 5 If you need more information about MySQL storage engines and how to know which one(s) are you using you will need to read the MySQL documentatio n although the MySQL notes in our database documentation also hassome introductory information.5 If you need more information about MySQL storage engines and how to know which one(s) are you using you will need to read the MySQL documentatio,n although the MySQL notes in our database docs also have some introductory information. 6 6 7 I suspect you had tables created with the MyISAM storage engine (the default for MySQL < 5.5) and since MySQL 5.5 defaults to InnoDB and you created new tables since then you ended with a mix.7 I suspect you had tables created with the MyISAM storage engine (the default for MySQL < 5.5) and since MySQL 5.5 defaults to InnoDB and you created new tables since then, you ended with a mix. 8 8 9 9 See comment:6:ticket:8200