I am trying to migrate a PostgreSQL table to a MySQL with all data, but I could not migrate because of two columns. These columns are in the Postgresql table as boolean and values in these columns are TRUE or FALSE (it looks like a string). I created a boolean column in MySQL but it doesn't accept the TRUE/FALSE data. What should I use instead of boolean for these TRUE/FALSE values? I tried tinyint(4) but it doesn't work(I must migrate the data as it is TRUE or FALSE, not t/f or 1/0).
An example:
Postgresqltable( id bigserial not null, message_listening boolean, ....... )
Example record: (1, TRUE, .......)