Bugzilla – Attachment 179795 Details for
Bug 39062
Increase length of inventory number field in database
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 39062: (QA follow-up): Tidying the atomic update
Bug-39062-QA-follow-up-Tidying-the-atomic-update.patch (text/plain), 1.53 KB, created by
Baptiste Wojtkowski (bwoj)
on 2025-03-27 13:12:46 UTC
(
hide
)
Description:
Bug 39062: (QA follow-up): Tidying the atomic update
Filename:
MIME Type:
Creator:
Baptiste Wojtkowski (bwoj)
Created:
2025-03-27 13:12:46 UTC
Size:
1.53 KB
patch
obsolete
>From c6a8d8e0465cea64a99edec93e62f5b063ec1d46 Mon Sep 17 00:00:00 2001 >From: Andrew Fuerste Henry <andrew@bywatersolutions.com> >Date: Mon, 10 Mar 2025 13:03:46 +0000 >Subject: [PATCH] Bug 39062: (QA follow-up): Tidying the atomic update > >Signed-off-by: Baptiste Wojtkowski <baptiste.wojtkowski@biblibre.com> >--- > .../atomicupdate/bug_39062_increase_stocknumber_length.pl | 8 ++++++-- > 1 file changed, 6 insertions(+), 2 deletions(-) > >diff --git a/installer/data/mysql/atomicupdate/bug_39062_increase_stocknumber_length.pl b/installer/data/mysql/atomicupdate/bug_39062_increase_stocknumber_length.pl >index db0963b9..782705a8 100755 >--- a/installer/data/mysql/atomicupdate/bug_39062_increase_stocknumber_length.pl >+++ b/installer/data/mysql/atomicupdate/bug_39062_increase_stocknumber_length.pl >@@ -9,8 +9,12 @@ return { > my ( $dbh, $out ) = @$args{qw(dbh out)}; > > # Do you stuffs here >- $dbh->do(q{ALTER TABLE items MODIFY COLUMN stocknumber varchar(80) DEFAULT NULL COMMENT 'inventory number (MARC21 952$i)'}); >- $dbh->do(q{ALTER TABLE deleteditems MODIFY COLUMN stocknumber varchar(80) DEFAULT NULL COMMENT 'inventory number (MARC21 952$i)'}); >+ $dbh->do( >+ q{ALTER TABLE items MODIFY COLUMN stocknumber varchar(80) DEFAULT NULL COMMENT 'inventory number (MARC21 952$i)'} >+ ); >+ $dbh->do( >+ q{ALTER TABLE deleteditems MODIFY COLUMN stocknumber varchar(80) DEFAULT NULL COMMENT 'inventory number (MARC21 952$i)'} >+ ); > > # Print useful stuff here > # tables >-- >2.30.2
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 39062
:
177602
|
177603
|
177604
|
177697
|
177698
|
177716
|
177717
|
179114
|
179793
|
179794
| 179795