From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

use utf8;
use strict;
__PACKAGE__->table("product");
__PACKAGE__->add_columns(
"oid",
{ data_type => "text", is_nullable => 0 },
"mib",
{ data_type => "text", is_nullable => 0 },
"leaf",
{ data_type => "text", is_nullable => 0 },
"descr",
{ data_type => "text", is_nullable => 1 },
);
__PACKAGE__->set_primary_key("oid");
1;