I'm trying to bake a database, one of the tables is a messaging table, created with the following query:
CREATE TABLE `rally`.`privatemessages` (
`id` INT NOT NULL AUTO_INCREMENT,
`user_id_from` INT NULL,
`user_id_to` INT NULL,
`content` TEXT NULL,
`timestamp` INT NULL,
PRIMARY KEY (`id`));
But when I try to bake the whole project, bake shell tells me that it cannot find table user_froms
. How can I set table fields for bake to work?