MySQL: Fix schema dumping `enum` and `set` columns correctly by kamipo · Pull Request #36604 · rails/rails
enum and set are typed cast as :string, but currently the :string type is incorrectly reused for schema dumping. A cast type on columns is not always the same with sql_type, this fixes schema dumpi...