From: Rafael Kitover Date: Thu, 25 Feb 2010 14:01:42 +0000 (-0500) Subject: filter tables for SQLite too X-Git-Tag: 0.06000~78 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0abc441b1379f2e4c4457a4bddf29a4463bfb7db;p=dbsrgits%2FDBIx-Class-Schema-Loader.git filter tables for SQLite too --- diff --git a/lib/DBIx/Class/Schema/Loader/DBI/SQLite.pm b/lib/DBIx/Class/Schema/Loader/DBI/SQLite.pm index 7221cb8..7f03dcb 100644 --- a/lib/DBIx/Class/Schema/Loader/DBI/SQLite.pm +++ b/lib/DBIx/Class/Schema/Loader/DBI/SQLite.pm @@ -145,7 +145,7 @@ sub _tables_list { push @tables, $row->{tbl_name}; } $sth->finish; - return @tables; + return $self->_filter_tables(@tables); } =head1 SEE ALSO