Revision history for Perl extension DBIx::Class::Schema::Loader
+0.03003 Tue Jun 6 02:22:49 UTC 2006
+ - Fix inclusion of external add-on class definitions
+ in dump_to_dir output.
+
0.03002 Tue Jun 6 01:27:25 UTC 2006
- rethrow exceptions that occur during make_schema_at
# 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.03002';
+our $VERSION = '0.03003';
__PACKAGE__->mk_classaccessor('dump_to_dir');
__PACKAGE__->mk_classaccessor('loader');
if($self->dump_directory) {
my $class_path = $table_class;
$class_path =~ s{::}{/}g;
+ $class_path .= '.pm';
my $filename = $INC{$class_path};
croak 'Failed to locate actual external module file for '
. "'$table_class'"