Added icon line to category schema

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

View file

@ -6,7 +6,7 @@ use warnings;
use base 'DBIx::Class::Schema';
our $VERSION = 23;
our $VERSION = 24;
__PACKAGE__->load_namespaces;

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");