Help for this page
-- I have an animal table describing species create table myschema.animal ( ... max_wingspan number, number_of_eggs number );
my $dog = $schema->resultset('Mammal')->find('Canis familiaris'); warn $dog->region, ' ', $dog->max_height; ... 'region' => 'Africa', 'quadrupedal' => 0, });