From 11c470d1ae529ab87c786ad1c0304d0c100cdda3 Mon Sep 17 00:00:00 2001 From: Michael Kimsal Date: Fri, 19 Mar 2010 16:34:41 -0400 Subject: [PATCH] added support for bit(1) column types to be converted to pg boolean --- mysql2psql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mysql2psql b/mysql2psql index 12a22e0..8f69b1a 100755 --- a/mysql2psql +++ b/mysql2psql @@ -33,6 +33,8 @@ class MysqlReader case type when /bigint/ "bigint" + when "bit(1)" + "boolean" when "tinyint(1)" "boolean" when /tinyint/ -- 2.1.4