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

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

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

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}
},
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}
}

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