added essential flag to transactions in schema
This commit is contained in:
parent
9563851941
commit
f966c1a5a1
10 changed files with 3580 additions and 1 deletions
|
@ -6,7 +6,7 @@ use warnings;
|
|||
|
||||
use base 'DBIx::Class::Schema';
|
||||
|
||||
our $VERSION = 23;
|
||||
our $VERSION = 24;
|
||||
|
||||
__PACKAGE__->load_namespaces;
|
||||
|
||||
|
|
|
@ -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],
|
||||
|
|
Reference in a new issue