filter tables for SQLite too
Rafael Kitover [Thu, 25 Feb 2010 14:01:42 +0000 (09:01 -0500)]
lib/DBIx/Class/Schema/Loader/DBI/SQLite.pm

index 7221cb8..7f03dcb 100644 (file)
@@ -145,7 +145,7 @@ sub _tables_list {
         push @tables, $row->{tbl_name};
     }
     $sth->finish;
-    return @tables;
+    return $self->_filter_tables(@tables);
 }
 
 =head1 SEE ALSO