From: ivan Date: Sat, 21 Apr 2007 05:02:48 +0000 (+0000) Subject: DBSchema::DBD::SQLite SERIAL patch from IN SUK JOUNG X-Git-Tag: DBIx_DBSchema_0_33~10 X-Git-Url: http://git.freeside.biz/gitweb/?p=DBIx-DBSchema.git;a=commitdiff_plain;h=9759db085193aee0de0133e97879fe11d3405667 DBSchema::DBD::SQLite SERIAL patch from IN SUK JOUNG --- diff --git a/Changes b/Changes index 3aa7520..bfffcb3 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Perl extension DBIx::DBSchema. +0.33 unreleased + - DBSchema::DBD::SQLite SERIAL patch from IN SUK JOUNG + , thanks! + 0.32 Wed Apr 18 15:02:25 PDT 2007 - increment the version numbers in Column.pm and Table.pm and the "use" statements accordingly diff --git a/DBSchema/DBD/SQLite.pm b/DBSchema/DBD/SQLite.pm index cbb4e87..5397ba0 100644 --- a/DBSchema/DBD/SQLite.pm +++ b/DBSchema/DBD/SQLite.pm @@ -8,7 +8,7 @@ $VERSION = '0.01'; @ISA = qw(DBIx::DBSchema::DBD); %typemap = ( -'SERIAL' => 'INTEGER PRIMARY KEY' +'SERIAL' => 'INTEGER PRIMARY KEY AUTOINCREMENT'; ); =head1 NAME