The MySQL templates can handle create options for tables. For example, the desired create-sql output is
CREATE TABLE book ( ... ) COLLATE=latin1_german2_ci ENGINE=InnoDB;
For this, specify the desired options in the option elements of the table to create:
Torque recognizes the following keys to be separated with an equals character("=") between key and value:
Torque recognizes the following keys to be separated with a space character(" ") between key and value:
All other keys are ignored.