add missing col to schema

This commit is contained in:
Oliver Gorwits
2018-03-05 22:46:33 +00:00
parent 66ecb203a7
commit 8a90236984
2 changed files with 3 additions and 1 deletions

View File

@@ -25,6 +25,8 @@ __PACKAGE__->add_columns(
{ data_type => "text", is_nullable => 1 },
"remote_serial",
{ data_type => "text", is_nullable => 1 },
"raw_speed",
{ data_type => "bigint", is_nullable => 1 },
);
__PACKAGE__->set_primary_key("port", "ip");

View File

@@ -54,7 +54,7 @@ __PACKAGE__->add_columns(
data_type => '[text]',
},
'aggspeed' => {
data_type => 'integer',
data_type => 'bigint',
},
'aggports' => {
data_type => 'integer',