You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add the possibility to convert all column names to lower case. (#106)
In MySQL column names are case insensitive.
PostgreSQL folds column names in queries to lower case,
but considers column names with upper case letters in them as different,
requiring the use of double quotes around the column name
and using the proper case when refering to that column.
That causes queries that worked on MySQL to fail on PostgreSQL.
Converting all column names to lower case during migration
avoids this issue.
0 commit comments