Bugzilla – Attachment 98669 Details for
Bug 22833
Block suspend and cancel on holds
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22833: Schema update, DO NOT PUSH
Bug-22833-Schema-update-DO-NOT-PUSH.patch (text/plain), 1.68 KB, created by
Martin Renvoize (ashimema)
on 2020-02-10 15:55:40 UTC
(
hide
)
Description:
Bug 22833: Schema update, DO NOT PUSH
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2020-02-10 15:55:40 UTC
Size:
1.68 KB
patch
obsolete
>From ae706c40ada3ad90eb5b10f05116cc42fbe081fc Mon Sep 17 00:00:00 2001 >From: Magnus Enger <magnus@libriotech.no> >Date: Wed, 11 Dec 2019 12:26:17 +0100 >Subject: [PATCH] Bug 22833: Schema update, DO NOT PUSH > >Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> >--- > Koha/Schema/Result/Itemtype.pm | 20 ++++++++++++++++++-- > 1 file changed, 18 insertions(+), 2 deletions(-) > >diff --git a/Koha/Schema/Result/Itemtype.pm b/Koha/Schema/Result/Itemtype.pm >index 073c527b7b..1d80371e27 100644 >--- a/Koha/Schema/Result/Itemtype.pm >+++ b/Koha/Schema/Result/Itemtype.pm >@@ -112,6 +112,18 @@ __PACKAGE__->table("itemtypes"); > is_nullable: 1 > size: 80 > >+=head2 can_suspend_hold >+ >+ data_type: 'tinyint' >+ default_value: 1 >+ is_nullable: 0 >+ >+=head2 can_cancel_hold >+ >+ data_type: 'tinyint' >+ default_value: 1 >+ is_nullable: 0 >+ > =cut > > __PACKAGE__->add_columns( >@@ -150,6 +162,10 @@ __PACKAGE__->add_columns( > { data_type => "tinyint", default_value => 0, is_nullable => 0 }, > "searchcategory", > { data_type => "varchar", is_nullable => 1, size => 80 }, >+ "can_suspend_hold", >+ { data_type => "tinyint", default_value => 1, is_nullable => 0 }, >+ "can_cancel_hold", >+ { data_type => "tinyint", default_value => 1, is_nullable => 0 }, > ); > > =head1 PRIMARY KEY >@@ -227,8 +243,8 @@ __PACKAGE__->has_many( > ); > > >-# Created by DBIx::Class::Schema::Loader v0.07048 @ 2019-07-04 04:56:48 >-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:Qo6jabJSQGeYJ542ebSJfg >+# Created by DBIx::Class::Schema::Loader v0.07046 @ 2019-12-10 13:05:13 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:imkleCMSxzQGqs6WXdLmjA > > # Use the ItemtypeLocalization view to create the join on localization > our $LANGUAGE; >-- >2.20.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 22833
:
96196
|
96197
|
96198
|
96207
|
98649
|
98650
|
98669
|
98670
|
98671
|
98947
|
98951
|
98952
|
98953
|
98954