better sidebar look and layout

This commit is contained in:
Oliver Gorwits
2017-12-23 00:47:17 +00:00
parent 1def41da67
commit 9f9971ff4e
13 changed files with 495 additions and 1367 deletions

View File

@@ -11,6 +11,8 @@ __PACKAGE__->add_columns(
{ data_type => "integer", is_nullable => 0, is_auto_increment => 1 },
"device_groups",
{ data_type => "text[]", is_nullable => 0 },
"vlan",
{ data_type => "integer", is_nullable => 0, default => 0 },
"positions",
{ data_type => "text", is_nullable => 0 },
);
@@ -18,6 +20,6 @@ __PACKAGE__->add_columns(
__PACKAGE__->set_primary_key("id");
__PACKAGE__->add_unique_constraint(
"netmap_positions_device_groups_key" => ['device_groups']);
"netmap_positions_device_groups_vlan_key" => [qw/device_groups vlan/]);
1;