Bugzilla – Attachment 88350 Details for
Bug 22729
flgAnonymized shouldn't be NULL and should be renamed anonymized
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22729: DB update
Bug-22729-DB-update.patch (text/plain), 2.85 KB, created by
Tomás Cohen Arazi (tcohen)
on 2019-04-19 12:04:35 UTC
(
hide
)
Description:
Bug 22729: DB update
Filename:
MIME Type:
Creator:
Tomás Cohen Arazi (tcohen)
Created:
2019-04-19 12:04:35 UTC
Size:
2.85 KB
patch
obsolete
>From 56f8aadd1c6139bd5d5141313107b7dc00328658 Mon Sep 17 00:00:00 2001 >From: Tomas Cohen Arazi <tomascohen@theke.io> >Date: Wed, 17 Apr 2019 15:01:47 -0300 >Subject: [PATCH] Bug 22729: DB update > >Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> >--- > .../atomicupdate/bug_21336_followup.perl | 20 +++++++++++++++++++ > installer/data/mysql/kohastructure.sql | 4 ++-- > 2 files changed, 22 insertions(+), 2 deletions(-) > create mode 100644 installer/data/mysql/atomicupdate/bug_21336_followup.perl > >diff --git a/installer/data/mysql/atomicupdate/bug_21336_followup.perl b/installer/data/mysql/atomicupdate/bug_21336_followup.perl >new file mode 100644 >index 0000000000..880d83205e >--- /dev/null >+++ b/installer/data/mysql/atomicupdate/bug_21336_followup.perl >@@ -0,0 +1,20 @@ >+$DBversion = 'XXX'; >+if( CheckVersion( $DBversion ) ) { >+ >+ if ( column_exists( 'borrowers', 'flgAnonymized' ) ) { >+ $dbh->do(q{ >+ ALTER TABLE borrowers >+ CHANGE `flgAnonymized` `anonymized` TINYINT(1) NOT NULL DEFAULT 0 >+ }); >+ } >+ >+ if ( column_exists( 'deletedborrowers', 'flgAnonymized' ) ) { >+ $dbh->do(q{ >+ ALTER TABLE deletedborrowers >+ CHANGE `flgAnonymized` `anonymized` TINYINT(1) NOT NULL DEFAULT 0 >+ }); >+ } >+ >+ SetVersion( $DBversion ); >+ print "Upgrade to $DBversion done (Bug 21336 - (follow-up) Rename flgAnonymized column)\n"; >+} >diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql >index 7b78a87b76..77224bcac3 100644 >--- a/installer/data/mysql/kohastructure.sql >+++ b/installer/data/mysql/kohastructure.sql >@@ -609,7 +609,7 @@ CREATE TABLE `deletedborrowers` ( -- stores data related to the patrons/borrower > `lang` varchar(25) NOT NULL default 'default', -- lang to use to send notices to this patron > `login_attempts` int(4) default 0, -- number of failed login attemps > `overdrive_auth_token` MEDIUMTEXT default NULL, -- persist OverDrive auth token >- `flgAnonymized` tinyint DEFAULT 0, -- flag for data anonymization >+ `anonymized` TINYINT(1) NOT NULL DEFAULT 0, -- flag for data anonymization > KEY borrowernumber (borrowernumber), > KEY `cardnumber` (`cardnumber`), > KEY `sms_provider_id` (`sms_provider_id`) >@@ -1643,7 +1643,7 @@ CREATE TABLE `borrowers` ( -- this table includes information about your patrons > `lang` varchar(25) NOT NULL default 'default', -- lang to use to send notices to this patron > `login_attempts` int(4) default 0, -- number of failed login attemps > `overdrive_auth_token` MEDIUMTEXT default NULL, -- persist OverDrive auth token >- `flgAnonymized` tinyint DEFAULT 0, -- flag for data anonymization >+ `anonymized` TINYINT(1) NOT NULL DEFAULT 0, -- flag for data anonymization > UNIQUE KEY `cardnumber` (`cardnumber`), > PRIMARY KEY `borrowernumber` (`borrowernumber`), > KEY `categorycode` (`categorycode`), >-- >2.21.0
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 22729
:
88222
|
88223
|
88224
|
88337
|
88338
|
88339
|
88340
|
88349
|
88350
|
88351
|
88352
|
88353
|
88692
|
88693
|
88694
|
88695
|
88696
|
88745