Bugzilla – Attachment 190988 Details for
Bug 39601
Add passkey support to Koha as an authentication mechanism
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[DO NOT PUSH] Bug 39601: DBIC changes
DO-NOT-PUSH-Bug-39601-DBIC-changes.patch (text/plain), 2.12 KB, created by
Paul Derscheid
on 2026-01-07 13:55:02 UTC
(
hide
)
Description:
[DO NOT PUSH] Bug 39601: DBIC changes
Filename:
MIME Type:
Creator:
Paul Derscheid
Created:
2026-01-07 13:55:02 UTC
Size:
2.12 KB
patch
obsolete
>From 20d36594abe3b8d6c05b24528917a936ec2b9dd2 Mon Sep 17 00:00:00 2001 >From: Paul Derscheid <paul.derscheid@lmscloud.de> >Date: Wed, 7 Jan 2026 13:54:21 +0000 >Subject: [PATCH] [DO NOT PUSH] Bug 39601: DBIC changes > >--- > Koha/Schema/Result/BorrowerModification.pm | 19 ++++++------------- > 1 file changed, 6 insertions(+), 13 deletions(-) > >diff --git a/Koha/Schema/Result/BorrowerModification.pm b/Koha/Schema/Result/BorrowerModification.pm >index ff2afb1e93a..2ecd47ecb95 100644 >--- a/Koha/Schema/Result/BorrowerModification.pm >+++ b/Koha/Schema/Result/BorrowerModification.pm >@@ -100,9 +100,8 @@ patron/borrower's middle name > > =head2 streetnumber > >- data_type: 'varchar' >+ data_type: 'tinytext' > is_nullable: 1 >- size: 10 > > =head2 streettype > >@@ -175,9 +174,8 @@ patron/borrower's middle name > =head2 B_streetnumber > > accessor: 'b_streetnumber' >- data_type: 'varchar' >+ data_type: 'tinytext' > is_nullable: 1 >- size: 10 > > =head2 B_streettype > >@@ -491,7 +489,7 @@ __PACKAGE__->add_columns( > "pronouns", > { data_type => "longtext", is_nullable => 1 }, > "streetnumber", >- { data_type => "varchar", is_nullable => 1, size => 10 }, >+ { data_type => "tinytext", is_nullable => 1 }, > "streettype", > { data_type => "varchar", is_nullable => 1, size => 50 }, > "address", >@@ -519,12 +517,7 @@ __PACKAGE__->add_columns( > "phonepro", > { data_type => "mediumtext", is_nullable => 1 }, > "B_streetnumber", >- { >- accessor => "b_streetnumber", >- data_type => "varchar", >- is_nullable => 1, >- size => 10, >- }, >+ { accessor => "b_streetnumber", data_type => "tinytext", is_nullable => 1 }, > "B_streettype", > { > accessor => "b_streettype", >@@ -655,8 +648,8 @@ __PACKAGE__->add_columns( > __PACKAGE__->set_primary_key("verification_token", "borrowernumber"); > > >-# Created by DBIx::Class::Schema::Loader v0.07051 @ 2024-11-11 11:07:06 >-# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:QOqDkQ+8LuTY6qYrPhsQWw >+# Created by DBIx::Class::Schema::Loader v0.07051 @ 2026-01-07 13:37:57 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:yPoytikJG58wj4a+ay+ScQ > > __PACKAGE__->add_columns( > '+gonenoaddress' => { is_boolean => 1 }, >-- >2.39.5
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 39601
:
185295
|
185296
|
185297
|
190988
|
190989