DBIx::Class::Helper::JoinTable - (DEPRECATED) Easily set up join tables with DBIx::Class


DBIx-Class-Helpers documentation Contained in the DBIx-Class-Helpers distribution.

Index


Code Index:

NAME

Top

DBIx::Class::Helper::JoinTable - (DEPRECATED) Easily set up join tables with DBIx::Class

VERSION

Top

version 2.007000

DESCRIPTION

Top

This component has been suplanted by DBIx::Class::Helper::Row::JoinTable. In the next major version (3) we will begin issuing a warning on it's use. In the major version after that (4) we will remove it entirely.

AUTHOR

Top

Arthur Axel "fREW" Schmidt <frioux+cpan@gmail.com>

COPYRIGHT AND LICENSE

Top


DBIx-Class-Helpers documentation Contained in the DBIx-Class-Helpers distribution.

package DBIx::Class::Helper::JoinTable;
BEGIN {
  $DBIx::Class::Helper::JoinTable::VERSION = '2.007000';
}

use parent 'DBIx::Class::Helper::Row::JoinTable';
use Carp::Clan;
carp 'This module is deprecated!  Please use the namespaced version instead!' if $VERSION >= 3;
croak 'This module is deprecated!  Please use the namespaced version instead!' if $VERSION >= 4;

# ABSTRACT: (DEPRECATED) Easily set up join tables with DBIx::Class

1;


__END__