use
utf8;
use
strict;
use
warnings;
__PACKAGE__->table(
"manufacturer"
);
__PACKAGE__->add_columns(
"company"
,
{
data_type
=>
"text"
,
is_nullable
=> 1 },
"abbrev"
,
{
data_type
=>
"text"
,
is_nullable
=> 1 },
"base"
,
{
data_type
=>
"text"
,
is_nullable
=> 0 },
"bits"
,
{
data_type
=>
"integer"
,
is_nullable
=> 1 },
"first"
,
{
data_type
=>
"macaddr"
,
is_nullable
=> 1 },
"last"
,
{
data_type
=>
"macaddr"
,
is_nullable
=> 1 },
"range"
,
{
data_type
=>
"int8range"
,
is_nullable
=> 1 },
);
__PACKAGE__->set_primary_key(
"base"
);
1;