AnatolyUss/nmig

Migrate emoji in VARCHAR columns

jordanderson opened this issue · 1 comments

I'm migrating data and have some emojis in VARCHAR columns mysql 5.7 that are not showing up in the corresponding CHARACTER VARYING column of my postgres 13 table.

Here are the applicable parts of the config (I think)?:

{
"source" : {
        "charset": "utf8mb4",
    },
    "target" : {
        "charset"  : "UTF8",
    },
    "encoding" : "utf8"
}

Any idea what I can do to resolve this? I'm looking through the code and will update if I find something.

Never mind. I figured it out. Great library!