DBSchema::DBD::SQLite SERIAL patch from IN SUK JOUNG
authorivan <ivan>
Sat, 21 Apr 2007 05:02:48 +0000 (05:02 +0000)
committerivan <ivan>
Sat, 21 Apr 2007 05:02:48 +0000 (05:02 +0000)
Changes
DBSchema/DBD/SQLite.pm

diff --git a/Changes b/Changes
index 3aa7520..bfffcb3 100644 (file)
--- 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
+          <i.joung@gmail.com>, 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
index cbb4e87..5397ba0 100644 (file)
@@ -8,7 +8,7 @@ $VERSION = '0.01';
 @ISA = qw(DBIx::DBSchema::DBD);
 
 %typemap = (
-'SERIAL' => 'INTEGER PRIMARY KEY'
+'SERIAL' => 'INTEGER PRIMARY KEY AUTOINCREMENT';
 );
 
 =head1 NAME