From: ivan Date: Mon, 18 Jun 2007 19:56:45 +0000 (+0000) Subject: fix for mis-application of SQLite SERIAL patch X-Git-Tag: DBIx_DBSchema_0_33~7 X-Git-Url: http://git.freeside.biz/gitweb/?p=DBIx-DBSchema.git;a=commitdiff_plain;h=65c3056b138f285fc6d60787eb0a61d9943365df fix for mis-application of SQLite SERIAL patch --- diff --git a/Changes b/Changes index 0362875..cf9ffe7 100644 --- a/Changes +++ b/Changes @@ -3,6 +3,8 @@ Revision history for Perl extension DBIx::DBSchema. 0.33 unreleased - DBSchema::DBD::SQLite SERIAL patch from IN SUK JOUNG , thanks! + - Fix for mis-application of above patch from Slaven Rezic + , thanks! - Update README wrt current CVS info and URL, closes: CPAN#27577 0.32 Wed Apr 18 15:02:25 PDT 2007 diff --git a/DBSchema/DBD/SQLite.pm b/DBSchema/DBD/SQLite.pm index 1a93345..042dc2a 100644 --- a/DBSchema/DBD/SQLite.pm +++ b/DBSchema/DBD/SQLite.pm @@ -8,7 +8,7 @@ $VERSION = '0.02'; @ISA = qw(DBIx::DBSchema::DBD); %typemap = ( -'SERIAL' => 'INTEGER PRIMARY KEY AUTOINCREMENT'; + 'SERIAL' => 'INTEGER PRIMARY KEY AUTOINCREMENT', ); =head1 NAME