I got a runtime error that I tracked down to a table with MySQL mediumtext columns. I got past it by deleting the table as I didn't need in for my new PG DB.
The type was coming through into here as :none
https://github.com/jhartwell/Plsm/blob/master/lib/io/export.ex#L6
Which then failed to match any of the map_type signatures:
https://github.com/jhartwell/Plsm/blob/master/lib/io/export.ex#L12
I didn't dig deeper but suppose mediumtext is uknown in the type mappings and coming through as :none.
I got a runtime error that I tracked down to a table with MySQL
mediumtextcolumns. I got past it by deleting the table as I didn't need in for my new PG DB.The
typewas coming through into here as:nonehttps://github.com/jhartwell/Plsm/blob/master/lib/io/export.ex#L6
Which then failed to match any of the
map_typesignatures:https://github.com/jhartwell/Plsm/blob/master/lib/io/export.ex#L12
I didn't dig deeper but suppose
mediumtextis uknown in the type mappings and coming through as:none.