No, there's no other file. That was just me being stupid, and not reading your post closely enough. Sorry about that...
This is the MySQL definition of the column:
IsEstimated TINYINT UNSIGNED DEFAULT 0 NOT NULL, /* Pseudo-boolean 1-true, 0-false. */
Can't you use 'boolean' as the postgres data-type here? The error message says you are using smallint, if I'm not mistaken.
What if you use boolean as the column type?
http://www.postgresql.org/docs/9.1/static/datatype-boolean.htmlWeb4j doesn't expose its internals to let you do the cast manually, no. That shouldn't be needed, though.
- John