rwnx / pynonymizer

A universal tool for translating sensitive production database dumps into anonymized copies.
https://pypi.org/project/pynonymizer/
MIT License
101 stars 38 forks source link

Update strategyfiles.md #128

Closed waynetheisinger closed 1 year ago

waynetheisinger commented 1 year ago

VARCHAR is not a valid type to cast into. According to the MySQL docs you can only cast to:

BINARY[(N)] CHAR[(N)] DATE DATETIME DECIMAL[(M[,D])] SIGNED [INTEGER] TIME UNSIGNED [INTEGER] I think your best-bet is to use CHAR.

rwnx commented 1 year ago

Nice spot!