From 6c7e2718ece524381f7cdb82c373cd935b364d5a 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 Signed-off-by: Philip Orr --- 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 acafda8c0e..5243298ab4 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' @@ -148,6 +156,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", @@ -250,8 +260,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07049 @ 2023-11-09 13:06:12 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:oeyBHoK+4epL1s+IAKNY7w +# 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.34.1