X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSchema%2FLoader%2FDBI%2FSQLite.pm;h=be60699895e08e19a99d26ae8943e9c2c7208320;hb=c52f11c91a8570f84daf2bfbbf60fa1ef3b32b5b;hp=8a7a652e8039257968696b8e136432151cca2175;hpb=a6900c9127d90a9bec26228a16f68a11cc13fb1d;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 8a7a652..be60699 100644 --- a/lib/DBIx/Class/Schema/Loader/DBI/SQLite.pm +++ b/lib/DBIx/Class/Schema/Loader/DBI/SQLite.pm @@ -6,7 +6,7 @@ use base 'DBIx::Class::Schema::Loader::DBI::Component::QuotedDefault'; use mro 'c3'; use DBIx::Class::Schema::Loader::Table (); -our $VERSION = '0.07039'; +our $VERSION = '0.07042'; =head1 NAME @@ -226,7 +226,7 @@ sub _table_uniq_info { push @uniqs, [ $name => \@cols ]; } $sth->finish; - return \@uniqs; + return [ sort { $a->[0] cmp $b->[0] } @uniqs ]; } sub _tables_list {