From 65c3056b138f285fc6d60787eb0a61d9943365df Mon Sep 17 00:00:00 2001 From: ivan Date: Mon, 18 Jun 2007 19:56:45 +0000 Subject: [PATCH] fix for mis-application of SQLite SERIAL patch --- Changes | 2 ++ DBSchema/DBD/SQLite.pm | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) 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 -- 2.20.1