dbic sync between actual db & our functions/docs (#595)

This commit is contained in:
nick n
2019-05-27 13:39:07 +02:00
committed by Oliver Gorwits
parent f2ddf175b7
commit e65f7b84c8
12 changed files with 42 additions and 73 deletions

View File

@@ -56,13 +56,13 @@ __PACKAGE__->add_columns(
"remote_id",
{ data_type => "text", is_nullable => 1 },
"is_master",
{ data_type => "bool", is_nullable => 0, default_value => \"false" },
{ data_type => "boolean", is_nullable => 0, default_value => \"false" },
"slave_of",
{ data_type => "text", is_nullable => 1 },
"manual_topo",
{ data_type => "bool", is_nullable => 0, default_value => \"false" },
{ data_type => "boolean", is_nullable => 0, default_value => \"false" },
"is_uplink",
{ data_type => "bool", is_nullable => 1 },
{ data_type => "boolean", is_nullable => 1 },
"vlan",
{ data_type => "text", is_nullable => 1 },
"pvid",