added essential flag to transactions in schema

This commit is contained in:
Finn 2018-03-01 17:08:30 +00:00
parent 9563851941
commit f966c1a5a1
10 changed files with 3580 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

@ -48,6 +48,11 @@ __PACKAGE__->add_columns(
is_nullable => 0,
set_on_create => 1,
},
"essential" => {
data_type => "boolean",
default_value => \"false",
is_nullable => 0,
},
distance => {
data_type => 'numeric',
size => [15],