as far as i know (and i am ~so~ not a DBA) that setting is only your default for when you don't specify an engine, and you can happily create innodb tables simply by ensuring that you name the engine...
Code:
CREATE TABLE shoutout
( w00t INTEGER
, foobar VARCHAR(37)
) ENGINE=InnoDB;