X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=lib%2FDBIx%2FClass%2FSchema%2FLoader%2FDBI%2FODBC%2FMicrosoft_SQL_Server.pm;h=900114c4a292ec6e423ee754677b9929bd9ea22a;hb=ae151d4f7f9d1bff0e912b03ff97c1aec918f867;hp=7a8e02cc70196274242043364a51e36f25041174;hpb=ca7feebf8b6e7c50fe330f505ea5e9056a407f59;p=dbsrgits%2FDBIx-Class-Schema-Loader.git diff --git a/lib/DBIx/Class/Schema/Loader/DBI/ODBC/Microsoft_SQL_Server.pm b/lib/DBIx/Class/Schema/Loader/DBI/ODBC/Microsoft_SQL_Server.pm index 7a8e02c..900114c 100644 --- a/lib/DBIx/Class/Schema/Loader/DBI/ODBC/Microsoft_SQL_Server.pm +++ b/lib/DBIx/Class/Schema/Loader/DBI/ODBC/Microsoft_SQL_Server.pm @@ -2,11 +2,13 @@ package DBIx::Class::Schema::Loader::DBI::ODBC::Microsoft_SQL_Server; use strict; use warnings; -use base 'DBIx::Class::Schema::Loader::DBI::MSSQL'; -use Carp::Clan qw/^DBIx::Class/; -use Class::C3; +use base qw/ + DBIx::Class::Schema::Loader::DBI::ODBC + DBIx::Class::Schema::Loader::DBI::MSSQL +/; +use mro 'c3'; -our $VERSION = '0.05000'; +our $VERSION = '0.07033'; =head1 NAME @@ -19,14 +21,6 @@ Proxy for L when using L. See L for usage information. -=cut - -sub _tables_list { - my $self = shift; - - return $self->next::method(undef, undef); -} - =head1 SEE ALSO L,