Browse Source

Bug 4078: DBIC Schema changes

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>

Signed-off-by: Josef Moravec <josef.moravec@gmail.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
18.05.x
Jonathan Druart 6 years ago
parent
commit
11c1829dc3
  1. 12
      Koha/Schema/Result/Currency.pm

12
Koha/Schema/Result/Currency.pm

@ -66,6 +66,12 @@ __PACKAGE__->table("currency");
default_value: 0
is_nullable: 1
=head2 p_sep_by_space
data_type: 'tinyint'
default_value: 0
is_nullable: 1
=cut
__PACKAGE__->add_columns(
@ -88,6 +94,8 @@ __PACKAGE__->add_columns(
{ data_type => "tinyint", is_nullable => 1 },
"archived",
{ data_type => "tinyint", default_value => 0, is_nullable => 1 },
"p_sep_by_space",
{ data_type => "tinyint", default_value => 0, is_nullable => 1 },
);
=head1 PRIMARY KEY
@ -150,8 +158,8 @@ __PACKAGE__->has_many(
);
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2016-03-09 15:14:35
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:0xP1adf+TPUi2cBn8Qah5A
# Created by DBIx::Class::Schema::Loader v0.07042 @ 2018-02-01 14:23:58
# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:PnJEcCgrM1Edf99phWFdyQ
# You can replace this text with custom content, and it will be preserved on regeneration

Loading…
Cancel
Save