X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSchema%2FLoader%2FDBI%2FSQLite.pm;h=f670d6596b9b3b53fad41e902ad650c71346c1e8;hb=refs%2Ftags%2F0.04999_13;hp=03a7134160f14827208e233e92ed17a06bab6a12;hpb=41ef22da3417549e4b5eedd025cca17278bd1d72;p=dbsrgits%2FDBIx-Class-Schema-Loader.git diff --git a/lib/DBIx/Class/Schema/Loader/DBI/SQLite.pm b/lib/DBIx/Class/Schema/Loader/DBI/SQLite.pm index 03a7134..f670d65 100644 --- a/lib/DBIx/Class/Schema/Loader/DBI/SQLite.pm +++ b/lib/DBIx/Class/Schema/Loader/DBI/SQLite.pm @@ -7,7 +7,7 @@ use Carp::Clan qw/^DBIx::Class/; use Text::Balanced qw( extract_bracketed ); use Class::C3; -our $VERSION = '0.04999_06'; +our $VERSION = '0.04999_13'; =head1 NAME @@ -148,6 +148,7 @@ sub _sqlite_parse_table { sub _extra_column_info { my ($self, $table, $col_name, $sth, $col_num) = @_; + ($table, $col_name) = @{$table}{qw/TABLE_NAME COLUMN_NAME/} if ref $table; my %extra_info; $self->{_sqlite_parse_data}->{$table} ||= @@ -199,6 +200,15 @@ sub _tables_list { L, L, L +=head1 AUTHOR + +See L and L. + +=head1 LICENSE + +This library is free software; you can redistribute it and/or modify it under +the same terms as Perl itself. + =cut 1;