From: Brandon Black Date: Tue, 22 May 2007 12:56:21 +0000 (+0000) Subject: 0.03012 released X-Git-Tag: 0.03012^0 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f614883455e12128c1e18ab39498434fcda5062e;p=dbsrgits%2FDBIx-Class-Schema-Loader.git 0.03012 released --- diff --git a/Changes b/Changes index 12df3d1..aa26906 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,6 @@ Revision history for Perl extension DBIx::Class::Schema::Loader +0.03012 Tue May 22, 2007 - Relationship names for multiple multi-col rels between the same table fixed by ilmari - Fix from Marc Espie for CREATE TABLE 'foo' for SQLite diff --git a/lib/DBIx/Class/Schema/Loader.pm b/lib/DBIx/Class/Schema/Loader.pm index 591c480..679d661 100644 --- a/lib/DBIx/Class/Schema/Loader.pm +++ b/lib/DBIx/Class/Schema/Loader.pm @@ -2,8 +2,7 @@ package DBIx::Class::Schema::Loader; use strict; use warnings; -use base qw/DBIx::Class::Schema/; -use base qw/Class::Data::Accessor/; +use base qw/DBIx::Class::Schema Class::Data::Accessor/; use Carp::Clan qw/^DBIx::Class/; use UNIVERSAL::require; use Class::C3; @@ -12,7 +11,7 @@ use Scalar::Util qw/ weaken /; # Always remember to do all digits for the version even if they're 0 # i.e. first release of 0.XX *must* be 0.XX000. This avoids fBSD ports # brain damage and presumably various other packaging systems too -our $VERSION = '0.03011'; +our $VERSION = '0.03012'; __PACKAGE__->mk_classaccessor('dump_to_dir'); __PACKAGE__->mk_classaccessor('loader');