[ERROR] PG::DatatypeMismatch: ERROR: column "count" cannot be cast automatically to type integer
HINT: You might need to specify "USING count::integer".
Schemafileをこうすればいけました。
123
create_table "products", force: :cascade do |t|
t.integer 'count', using: 'count::integer'
end