NAME
Mango::Schema::ProductAttribute - DBIC schema class for product attributes
SYNOPSIS
use Mango::Schema;
my $schema = Mango::Schema->connect;
my $attributes = $schema->resultset('ProductAttributes')->search;
DESCRIPTION
Mango::Schema::ProductAttribute is loaded by Mango::Schema to read/write product attribute data.
COLUMNS
id
Contains the primary key for each attribute record.
id => {
data_type => 'INT',
is_auto_increment => 1,
is_nullable => 0,
extras => {unsigned => 1}
},
product_id
The product id foreign key assigned to the attribute.
product_id => {
data_type => 'INT',
is_nullable => 0,
is_foreign_key => 1,
extras => {unsigned => 1}
},
name
Contains the attribute name.
name => {
data_type => 'VARCHAR',
size => 25,
is_nullable => 0
},
value
The value of the attribute.
value => {
data_type => 'VARCHAR',
size => 255,
is_nullable => 0
},
created
When the attribute record was created.
created => {
data_type => 'DATETIME',
is_nullable => 0
},
updated
When the attribute record was updated.
updated => {
data_type => 'DATETIME',
is_nullable => 0
}
AUTHOR
Christopher H. Laco
CPAN ID: CLACO
claco@chrislaco.com
http://today.icantfocus.com/blog/