From 87b48d71885b9111eb6ae1bb9f5c275df7003bcc Mon Sep 17 00:00:00 2001 From: Sam Lau Date: Tue, 6 Aug 2024 19:15:02 +0000 Subject: [PATCH] Bug 32485: Schema Updates (DO NOT PUSH) --- Koha/Schema/Result/Itemtype.pm | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/Koha/Schema/Result/Itemtype.pm b/Koha/Schema/Result/Itemtype.pm index 22880fdb43..8aad06d6d3 100644 --- a/Koha/Schema/Result/Itemtype.pm +++ b/Koha/Schema/Result/Itemtype.pm @@ -144,6 +144,23 @@ message that is displayed when an item with the given item type is checked in type (CSS class) for the checkinmsg, can be 'alert' or 'message' +=head2 checkoutmsg + + data_type: 'varchar' + is_nullable: 1 + size: 255 + +message that is displayed when an item with the given item type is checked out + +=head2 checkoutmsgtype + + data_type: 'char' + default_value: 'message' + is_nullable: 0 + size: 16 + +type (CSS class) for the checkoutmsg, can be 'alert' or 'message' + =head2 sip_media_type data_type: 'varchar' @@ -214,6 +231,15 @@ __PACKAGE__->add_columns( is_nullable => 0, size => 16, }, + "checkoutmsg", + { data_type => "varchar", is_nullable => 1, size => 255 }, + "checkoutmsgtype", + { + data_type => "char", + default_value => "message", + is_nullable => 0, + size => 16, + }, "sip_media_type", { data_type => "varchar", is_nullable => 1, size => 3 }, "hideinopac", @@ -334,8 +360,8 @@ __PACKAGE__->has_many( ); -# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-05-08 14:38:07 -# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:9NChRQA4eBUqHpLXUFmOuw +# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-08-06 18:50:35 +# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:mx7/xJ8dzCnInR2Dm+zTZw __PACKAGE__->add_columns( '+automatic_checkin' => { is_boolean => 1 }, -- 2.39.2