Hello, I'm new to Elixir and SQLAlchemy and using them with MySQL. And, I would like to use an InnoDB engine for all tables, but, *without* modifying the default MySQL engine type.
I know this is possible with using_table_options (mysql_engine="InnoDB") on most tables, however I am struggling to find a way for tables created from ManyToMany relationships. According to the Elixir Documentation[1]: "Behind the scene, the ManyToMany relationship will automatically create an intermediate table to host its data." Is there a way to define the table options and an InnoDB engine for the intermediate table automatically created by a ManyToMany relationship? If not, any recommendations other than an "alter table" command in mysql? Thanks, - Andrew [1]: http://elixir.ematia.de/apidocs/elixir.relationships.html#manytomany --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "SQLElixir" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/sqlelixir?hl=en -~----------~----~----~----~------~----~------~--~---
