transalate `bool' to `tinyint' for MySQL. DBIx_DBSchema_0_15
authorivan <ivan>
Sat, 25 Nov 2000 07:45:51 +0000 (07:45 +0000)
committerivan <ivan>
Sat, 25 Nov 2000 07:45:51 +0000 (07:45 +0000)
Changes
DBSchema.pm
DBSchema/DBD/mysql.pm

diff --git a/Changes b/Changes
index 2af56f0..9b74541 100644 (file)
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
 Revision history for Perl extension DBIx::DBSchema.
 
+0.15  Fri Nov 24 23:39:16 2000
+       - MySQL handling of BOOL type (change to TINYINT)
+
 0.14  Tue Oct 24 14:43:16 2000
         - MySQL handling of SERIAL type (change to INTEGER AUTO_INCREMENT)
 
index e24cd72..ab9b85a 100644 (file)
@@ -14,7 +14,7 @@ use DBIx::DBSchema::ColGroup::Index;
 #@ISA = qw(Exporter);
 @ISA = ();
 
-$VERSION = "0.14";
+$VERSION = "0.15";
 
 =head1 NAME
 
index 9fa7f80..3d64477 100644 (file)
@@ -4,12 +4,13 @@ use strict;
 use vars qw($VERSION @ISA %typemap);
 use DBIx::DBSchema::DBD;
 
-$VERSION = '0.02';
+$VERSION = '0.03';
 @ISA = qw(DBIx::DBSchema::DBD);
 
 %typemap = (
   'TIMESTAMP' => 'DATETIME',
   'SERIAL'    => 'INTEGER',
+  'BOOL'      => 'TINYINT',
 );
 
 =head1 NAME