1use utf8;
2package App::Netdisco::DB::Result::Oui;
3
4
5use strict;
6use warnings;
7
8use base 'App::Netdisco::DB::Result';
9__PACKAGE__->table("oui");
10__PACKAGE__->add_columns(
11  "oui",
12  { data_type => "varchar", is_nullable => 0, size => 8 },
13  "company",
14  { data_type => "text", is_nullable => 1 },
15  "abbrev",
16  { data_type => "text", is_nullable => 1 },
17);
18__PACKAGE__->set_primary_key("oui");
19
201;
21