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=4c47711124f27f1181be1463910fab7c56024d1b;hb=306bf770bf08b06f92863808b1938f2fc704acb0;hp=cbf1ed7c91b4afcb53dc8876385938203864c3d7;hpb=e57fd7269a26350d11d6162e7aca7812b0938f7a;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 cbf1ed7..4c47711 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.04999_06'; +our $VERSION = '0.07047'; =head1 NAME @@ -19,23 +21,20 @@ 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, L, L, L -=head1 AUTHOR +=head1 AUTHORS + +See L. + +=head1 LICENSE -Rafael Kitover C +This library is free software; you can redistribute it and/or modify it under +the same terms as Perl itself. =cut