Added is_fair column for fairly trading organisations
This commit is contained in:
parent
69811229c8
commit
e29badb59d
10 changed files with 2451 additions and 1 deletions
|
@ -6,7 +6,7 @@ use warnings;
|
|||
|
||||
use base 'DBIx::Class::Schema';
|
||||
|
||||
our $VERSION = 18;
|
||||
our $VERSION = 19;
|
||||
|
||||
__PACKAGE__->load_namespaces;
|
||||
|
||||
|
|
|
@ -59,6 +59,11 @@ __PACKAGE__->add_columns(
|
|||
default => undef,
|
||||
is_nullable => 1,
|
||||
},
|
||||
is_fair => {
|
||||
data_type => 'boolean',
|
||||
default => undef,
|
||||
is_nullable => 1,
|
||||
},
|
||||
submitted_by_id => {
|
||||
data_type => 'integer',
|
||||
is_nullable => 1,
|
||||
|
|
Reference in a new issue