From 14de7e35a6d6e7f76657f7675ac20507887d3a43 Mon Sep 17 00:00:00 2001 From: Janusz Kaczmarek Date: Tue, 1 Oct 2024 11:01:44 +0000 Subject: [PATCH] Bug 37511: DBIC schema changes for bug 37511 Signed-off-by: Roman Dolny Signed-off-by: Martin Renvoize Signed-off-by: Katrin Fischer --- 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 13a04ca326..bfc5f21e9b 100644 --- a/Koha/Schema/Result/Currency.pm +++ b/Koha/Schema/Result/Currency.pm @@ -72,6 +72,12 @@ __PACKAGE__->table("currency"); default_value: 0 is_nullable: 1 +=head2 p_cs_precedes + + data_type: 'tinyint' + default_value: 1 + is_nullable: 0 + =cut __PACKAGE__->add_columns( @@ -96,6 +102,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", default_value => 0, is_nullable => 1 }, "p_sep_by_space", { data_type => "tinyint", default_value => 0, is_nullable => 1 }, + "p_cs_precedes", + { data_type => "tinyint", default_value => 1, is_nullable => 0 }, ); =head1 PRIMARY KEY @@ -173,8 +181,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-06 16:45:06 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:FmTABTXRmT/kwlkKkO/0pw +# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-10-01 10:59:15 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:C7BtR3ceUVovrYitKh55bA sub koha_object_class { -- 2.39.5