__PACKAGE__->table(
"device_ip"
);
__PACKAGE__->add_columns(
"ip"
,
{
data_type
=>
"inet"
,
is_nullable
=> 0 },
"alias"
,
{
data_type
=>
"inet"
,
is_nullable
=> 0 },
"subnet"
,
{
data_type
=>
"cidr"
,
is_nullable
=> 1 },
"port"
,
{
data_type
=>
"text"
,
is_nullable
=> 1 },
"dns"
,
{
data_type
=>
"text"
,
is_nullable
=> 1 },
"creation"
,
{
data_type
=>
"timestamp"
,
default_value
=> \
"LOCALTIMESTAMP"
,
is_nullable
=> 1,
original
=> {
default_value
=> \
"LOCALTIMESTAMP"
},
},
);
__PACKAGE__->set_primary_key(
"ip"
,
"alias"
);
__PACKAGE__->belongs_to(
device
=>
'App::Netdisco::DB::Result::Device'
,
'ip'
);
__PACKAGE__->belongs_to(
device_port
=>
'App::Netdisco::DB::Result::DevicePort'
,
{
'foreign.port'
=>
'self.port'
,
'foreign.ip'
=>
'self.ip'
} );
1;