Bugzilla – Attachment 191405 Details for
Bug 41409
Streetnumber has a different data type in borrower_modifications
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 41409: (follow-up) DBIC changes
Bug-41409-follow-up-DBIC-changes.patch (text/plain), 2.13 KB, created by
Matt Blenkinsop
on 2026-01-14 11:13:24 UTC
(
hide
)
Description:
Bug 41409: (follow-up) DBIC changes
Filename:
MIME Type:
Creator:
Matt Blenkinsop
Created:
2026-01-14 11:13:24 UTC
Size:
2.13 KB
patch
obsolete
>From 8815a5cb81d1540b337b72d5bf0d3f1b019ef31f Mon Sep 17 00:00:00 2001 >From: Matt Blenkinsop <matt.blenkinsop@openfifth.co.uk> >Date: Wed, 14 Jan 2026 11:13:10 +0000 >Subject: [PATCH] Bug 41409: (follow-up) 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..8f6cff5da77 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-14 11:12:39 >+# DO NOT MODIFY THIS OR ANYTHING ABOVE! md5sum:OAlcFAe105iBYwvTEMo99w > > __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 41409
:
190378
|
190381
|
190419
|
190682
| 191405