From 796c12ea57a0d954626df60aba0403871e31ba03 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Sat, 18 Mar 2023 10:27:32 +0000 Subject: [PATCH] Bug 32610: [DO NOT PUSH] DBIC Update --- Koha/Schema/Result/BorrowerAttributeType.pm | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/BorrowerAttributeType.pm b/Koha/Schema/Result/BorrowerAttributeType.pm index bd1bbba124..3cf858bc97 100644 --- a/Koha/Schema/Result/BorrowerAttributeType.pm +++ b/Koha/Schema/Result/BorrowerAttributeType.pm @@ -55,6 +55,14 @@ defines whether one patron/borrower can have multiple values for this custom fie defines if this value needs to be unique (1 for yes, 0 for no) +=head2 is_date + + data_type: 'tinyint' + default_value: 0 + is_nullable: 0 + +defines if this field is displayed as a date + =head2 opac_display data_type: 'tinyint' @@ -140,6 +148,8 @@ __PACKAGE__->add_columns( { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "unique_id", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, + "is_date", + { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "opac_display", { data_type => "tinyint", default_value => 0, is_nullable => 0 }, "opac_editable", @@ -240,8 +250,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2022-04-25 12:50:55 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:VgJP4Ugfz0sN3YoJk/tshA +# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-03-17 23:12:24 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:BMvvDUsTQAwRrddZL3gvTg __PACKAGE__->add_columns( '+keep_for_pseudonymization' => { is_boolean => 1 }, -- 2.30.2