Bugzilla – Attachment 195080 Details for
Bug 23260
Anonymize (remove) patron data from items_last_borrower
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 23260: (follow-up) Add index check
Bug-23260-follow-up-Add-index-check.patch (text/plain), 1.64 KB, created by
Lucas Gass (lukeg)
on 2026-03-10 14:16:47 UTC
(
hide
)
Description:
Bug 23260: (follow-up) Add index check
Filename:
MIME Type:
Creator:
Lucas Gass (lukeg)
Created:
2026-03-10 14:16:47 UTC
Size:
1.64 KB
patch
obsolete
>From 1d8d1cd0dea5cc0915e570b4f8436fadfba4af3c Mon Sep 17 00:00:00 2001 >From: Lucas Gass <lucas@bywatersolutions.com> >Date: Tue, 10 Mar 2026 14:07:41 +0000 >Subject: [PATCH] Bug 23260: (follow-up) Add index check > >--- > installer/data/mysql/db_revs/251200028.pl | 18 +++++++++--------- > 1 file changed, 9 insertions(+), 9 deletions(-) > >diff --git a/installer/data/mysql/db_revs/251200028.pl b/installer/data/mysql/db_revs/251200028.pl >index f50af490152..35303be3cf8 100755 >--- a/installer/data/mysql/db_revs/251200028.pl >+++ b/installer/data/mysql/db_revs/251200028.pl >@@ -8,16 +8,16 @@ return { > up => sub { > my ($args) = @_; > my ( $dbh, $out ) = @$args{qw(dbh out)}; >- >- $dbh->do( >- q{ >- ALTER TABLE items_last_borrower >- MODIFY COLUMN borrowernumber int(11) NULL, >- MODIFY created_on timestamp NOT NULL DEFAULT current_timestamp() >+ unless ( index_exists( 'items_last_borrower', 'items_last_borrower_ibfk_1' ) ) { >+ $dbh->do( >+ q{ >+ ALTER TABLE items_last_borrower >+ MODIFY COLUMN borrowernumber int(11) NULL, >+ MODIFY created_on timestamp NOT NULL DEFAULT current_timestamp() >+ } >+ ); >+ say_success( $out, "Fixed items_last_borrower.created_on column to prevent automatic timestamp updates" ); > } >- ); >- say_success( $out, "Fixed items_last_borrower.created_on column to prevent automatic timestamp updates" ); >- > $dbh->do( > q{ > INSERT IGNORE INTO systempreferences ( `variable`, `value`, `options`, `explanation`, `type` ) VALUES >-- >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 23260
:
92863
|
92864
|
93052
|
94858
|
94859
|
95033
|
95457
|
95458
|
95459
|
95460
|
95651
|
95698
|
95699
|
95700
|
95701
|
95769
|
95770
|
95771
|
95772
|
96791
|
97841
|
97842
|
98044
|
98053
|
98054
|
98064
|
98282
|
98349
|
98352
|
112734
|
112735
|
112736
|
112737
|
112738
|
112739
|
112740
|
112741
|
112742
|
112743
|
117974
|
117975
|
117976
|
117977
|
117978
|
117979
|
117980
|
117981
|
117982
|
117983
|
120522
|
120523
|
120524
|
120525
|
120526
|
120527
|
120528
|
120529
|
120530
|
120531
|
122963
|
122964
|
122965
|
122966
|
122967
|
122968
|
122969
|
122970
|
122971
|
122972
|
145175
|
145176
|
145177
|
145178
|
145179
|
145180
|
145181
|
145182
|
145183
|
145184
|
157106
|
157107
|
157108
|
157109
|
157110
|
157111
|
157112
|
157113
|
157114
|
157115
|
157116
|
159291
|
159292
|
159293
|
159294
|
159298
|
159299
|
159300
|
159301
|
164129
|
164130
|
164131
|
164132
|
164133
|
182000
|
182001
|
182002
|
182003
|
182004
|
182005
|
182006
|
182007
|
182927
|
182930
|
186835
|
186836
|
186837
|
186838
|
186839
|
186840
|
186843
|
186902
|
186942
|
186943
|
186948
|
187768
|
187769
|
187770
|
187771
|
187772
|
187773
|
187774
|
187775
|
187776
|
187777
|
187778
|
192200
|
192201
|
192202
|
192203
|
192204
|
192205
|
192206
|
192207
|
192208
|
192209
|
192210
|
192211
|
192212
|
192213
|
192214
|
192215
|
192216
|
192217
|
192218
|
192219
|
192220
|
192221
|
192222
|
192223
|
192224
|
192225
|
192226
|
192227
|
192228
|
192229
|
192230
|
192231
|
192232
|
192233
|
195080