Revision history for Perl extension DBIx::Class::Schema::Loader
+ - skip ^sqlite_ tables in SQLite (thanks chromatic)
+
0.03011 Sat Apr 14 19:03:07 UTC 2007
- fix case-sensitivity in UNIQUE parsing for SQLite
my @tables;
while ( my $row = $sth->fetchrow_hashref ) {
next unless lc( $row->{type} ) eq 'table';
+ next if $row->{tbl_name} =~ /^sqlite_/;
push @tables, $row->{tbl_name};
}
return @tables;