I need to test if my code creates the correct database statements. I know I can run my application with an in memory database. It's not perfect, but enough for this project. My SQL contains MySQL specific stuff.
When I run my test it breaks on the evolution that contains the following:
CREATE TABLE `Beaches` (
`id` INT(10) NOT NULL AUTO_INCREMENT,
`name` VARCHAR(255) NOT NULL,
PRIMARY KEY (`id`)
)
ENGINE=InnoDB;
COLLATE='utf8_general_ci'
How to solve the problems with the MySQL specific syntax?