I am using a loading file with pgloader
and there is a particularly problematic table in my MySQL database with malformed datetimes. I want to just skip that column during the migration. How can I do this in a loading file? Something like:
LOAD DATABASE
FROM mysql://root@localhost/mydb
INTO postgresql:///mypgdb
INCLUDING ONLY TABLE NAMES MATCHING
'Table_with_Datetimes_Column' AS dt,
'My_Other_Table'
EXCLUDING dt.Malformed_Column
;