The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Mango::Schema::ProductTag - DBIC schema class for product tags

SYNOPSIS

    use Mango::Schema;
    my $schema = Mango::Schema->connect;
    my $prodct_tags = $schema->resultset('ProductTags')->search;

DESCRIPTION

Mango::Schema::ProductTag is loaded by Mango::Schema to read/write role membership data.

COLUMNS

product_id

Contains the product id for each product/tag pivot record.

    product_id => {
        data_type      => 'INT',
        is_nullable    => 0,
        is_foreign_key => 1,
        extras         => {unsigned => 1}
    },

tag_id

Contains the tag id for each product/tag pivot record.

    tag_id => {
        data_type      => 'INT',
        is_nullable    => 0,
        is_foreign_key => 1,
        extras         => {unsigned => 1}
    }

AUTHOR

    Christopher H. Laco
    CPAN ID: CLACO
    claco@chrislaco.com
    http://today.icantfocus.com/blog/