From: ivan Date: Thu, 30 Mar 2006 14:48:43 +0000 (+0000) Subject: increment the version numbers in Column.pm and Table.pm and the "use" statements... X-Git-Tag: DBIx_DBSchema_0_32~7 X-Git-Url: http://git.freeside.biz/gitweb/?p=DBIx-DBSchema.git;a=commitdiff_plain;h=bebbb82db829900b14dc869180e752c832f56534 increment the version numbers in Column.pm and Table.pm and the "use" statements accordingly --- diff --git a/Changes b/Changes index 5596289..dcfcd3a 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,9 @@ Revision history for Perl extension DBIx::DBSchema. +0.31 unreleased + - increment the version numbers in Column.pm and Table.pm and the + "use" statements accordingly + 0.31 Thu Mar 30 05:28:20 PST 2006 - more schema update stuff: - added Column::sql_alter_column diff --git a/DBSchema.pm b/DBSchema.pm index 893696a..d7d6dc0 100644 --- a/DBSchema.pm +++ b/DBSchema.pm @@ -5,7 +5,7 @@ use vars qw(@ISA $VERSION $DEBUG); #use Exporter; use Storable; use DBIx::DBSchema::_util qw(_load_driver _dbh); -use DBIx::DBSchema::Table; +use DBIx::DBSchema::Table 0.03; use DBIx::DBSchema::Column; use DBIx::DBSchema::ColGroup::Unique; use DBIx::DBSchema::ColGroup::Index; diff --git a/DBSchema/Column.pm b/DBSchema/Column.pm index 44b6099..ca6ecc8 100644 --- a/DBSchema/Column.pm +++ b/DBSchema/Column.pm @@ -9,7 +9,7 @@ use DBIx::DBSchema::_util qw(_load_driver _dbh); #@ISA = qw(Exporter); @ISA = qw(); -$VERSION = '0.06'; +$VERSION = '0.07'; =head1 NAME diff --git a/DBSchema/Table.pm b/DBSchema/Table.pm index fc008f9..ef1ad6e 100644 --- a/DBSchema/Table.pm +++ b/DBSchema/Table.pm @@ -5,14 +5,14 @@ use vars qw(@ISA $VERSION $DEBUG %create_params); #use Carp; #use Exporter; use DBIx::DBSchema::_util qw(_load_driver _dbh); -use DBIx::DBSchema::Column 0.03; +use DBIx::DBSchema::Column 0.07; use DBIx::DBSchema::ColGroup::Unique; use DBIx::DBSchema::ColGroup::Index; #@ISA = qw(Exporter); @ISA = qw(); -$VERSION = '0.02'; +$VERSION = '0.03'; $DEBUG = 0; =head1 NAME diff --git a/debian/control b/debian/control index e147d48..02f92c0 100644 --- a/debian/control +++ b/debian/control @@ -18,7 +18,7 @@ Description: Database-independent schema objects and restore it from a different process. Most importantly, DBIx::DBSchema can write SQL CREATE statements for different databases from a single source. . - Currently supported databases are MySQL, PostgreSQL, Oracle and Sybase. + Currently supported databases are MySQL, PostgreSQL, Oracle, Sybase and SQLite. DBIx::DBSchema will attempt to use generic SQL syntax for other databases. Assistance adding support for other databases is welcomed. See the DBIx::DBSchema::DBD manpage, "Driver Writer's Guide and Base Class".