Added icon line to category schema

This commit is contained in:
Finn 2018-06-12 12:19:23 +01:00
parent 969b529a66
commit 4323e49cfc
10 changed files with 3824 additions and 1 deletions

View file

@ -18,6 +18,12 @@ __PACKAGE__->add_columns(
size => 255,
is_nullable => 0,
},
# See here for all possible options http://simplelineicons.com/
"line_icon" => {
data_type => "varchar",
size => 255,
is_nullable => 1,
},
);
__PACKAGE__->set_primary_key("id");