Set default Database Storage Engine when creating tables with plugins?

It is possible with MySQL, and it doesn’t seem to create any problem with wordpress’s dbDelta()

Here is the line you need to change

$charset_collate = $wpdb->get_charset_collate() . ' engine = innoDB';

You simply have to add engine = innoDB at the end of the SQL query and the correct engine will be used by MySQL