My source DB schema has the following:
`currency_conversion_rate` float NOT NULL,
My target DB script creates the table, but with column
currency_conversion_rate FLOAT(12, 0) NOT NULL,
Which clearly will lose some decimal places.