implement port properties table and error disable gathering to it

This commit is contained in:
Oliver Gorwits
2018-02-20 22:45:53 +00:00
parent 3e7ffe8045
commit 7191a1cd00
7 changed files with 114 additions and 1 deletions

View File

@@ -0,0 +1,32 @@
use utf8;
package App::Netdisco::DB::Result::DevicePortProperties;
use strict;
use warnings;
use base 'DBIx::Class::Core';
__PACKAGE__->table("device_port_properties");
__PACKAGE__->add_columns(
"ip",
{ data_type => "inet", is_nullable => 0 },
"port",
{ data_type => "text", is_nullable => 0 },
"error_disable_cause",
{ data_type => "text", is_nullable => 1 },
);
__PACKAGE__->set_primary_key("port", "ip");
=head1 RELATIONSHIPS
=head2 port
Returns the entry from the C<port> table for which this Power entry applies.
=cut
__PACKAGE__->belongs_to( port => 'App::Netdisco::DB::Result::DevicePort', {
'foreign.ip' => 'self.ip', 'foreign.port' => 'self.port',
});
1;