From 0f8b8cd487ec1e065ccc07a9f04917c24229dc88 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 1 Feb 2018 14:30:39 -0300 Subject: [PATCH] Bug 4078: DBIC Schema changes Signed-off-by: Kyle M Hall --- Koha/Schema/Result/Currency.pm | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Currency.pm b/Koha/Schema/Result/Currency.pm index 7169666..3f4d36c 100644 --- a/Koha/Schema/Result/Currency.pm +++ b/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 -- 2.10.2