Bugzilla – Attachment 97247 Details for
Bug 24151
Add a pseudonymization process for patrons and transactions
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 24151: DB changes - pseudonymized_borrower_attributes
Bug-24151-DB-changes---pseudonymizedborrowerattrib.patch (text/plain), 3.48 KB, created by
Jonathan Druart
on 2020-01-11 18:13:15 UTC
(
hide
)
Description:
Bug 24151: DB changes - pseudonymized_borrower_attributes
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2020-01-11 18:13:15 UTC
Size:
3.48 KB
patch
obsolete
>From b06c6ffcf41a21f93958d830696a67b82073fb36 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Wed, 27 Nov 2019 14:49:17 +0100 >Subject: [PATCH] Bug 24151: DB changes - pseudonymized_borrower_attributes > >Add a new DB table pseudonymized_borrower_attributes > >Sponsored-by: Association KohaLa - https://koha-fr.org/ >--- > installer/data/mysql/atomicupdate/bug_24151.perl | 13 +++++++++++++ > installer/data/mysql/kohastructure.sql | 14 ++++++++++++++ > 2 files changed, 27 insertions(+) > >diff --git a/installer/data/mysql/atomicupdate/bug_24151.perl b/installer/data/mysql/atomicupdate/bug_24151.perl >index 6dd12888f6..9a97f808b7 100644 >--- a/installer/data/mysql/atomicupdate/bug_24151.perl >+++ b/installer/data/mysql/atomicupdate/bug_24151.perl >@@ -47,6 +47,19 @@ if( CheckVersion( $DBversion ) ) { > VALUES ('PseudonymizationTransactionFields','','datetime,transaction_branchcode,transaction_type,itemnumber,itemtype,holdingbranch,location,itemcallnumber,ccode','Transaction fields to copy to the pseudonymized_transactions table','multiple') > |); > >+ unless( TableExists( 'pseudonymized_borrower_attributes' ) ) { >+ $dbh->do(q| >+ CREATE TABLE pseudonymized_borrower_attributes ( >+ `id` int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, -- Row id field >+ `transaction_id` int(11) NOT NULL, >+ `code` varchar(10) NOT NULL, >+ `attribute` varchar(255) default NULL, >+ CONSTRAINT `pseudonymized_borrower_attributes_ibfk_1` FOREIGN KEY (`transaction_id`) REFERENCES `pseudonymized_transactions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, >+ CONSTRAINT `anonymized_borrower_attributes_ibfk_2` FOREIGN KEY (`code`) REFERENCES `borrower_attribute_types` (`code`) ON DELETE CASCADE ON UPDATE CASCADE >+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; >+ |); >+ } >+ > # Always end with this (adjust the bug info) > SetVersion( $DBversion ); > print "Upgrade to $DBversion done (Bug 24151 - Add pseudonymized_transactions tables and sysprefs for Pseudonymization)\n"; >diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql >index 6bfe4655d8..63d109e246 100644 >--- a/installer/data/mysql/kohastructure.sql >+++ b/installer/data/mysql/kohastructure.sql >@@ -1971,6 +1971,20 @@ CREATE TABLE `pseudonymized_transactions` ( > ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; > > -- >+-- Table structure for table borrower_attributes >+-- >+ >+DROP TABLE IF EXISTS pseudonymized_borrower_attributes; >+CREATE TABLE pseudonymized_borrower_attributes ( -- association table between pseudonymized_transactions and borrower_attributes >+ `id` int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, -- Row id field >+ `transaction_id` int(11) NOT NULL, >+ `code` varchar(10) NOT NULL, -- foreign key from the borrower_attribute_types table, defines which custom field this value was entered for >+ `attribute` varchar(255) default NULL, -- custom patron field value >+ CONSTRAINT `pseudonymized_borrower_attributes_ibfk_1` FOREIGN KEY (`transaction_id`) REFERENCES `pseudonymized_transactions` (`id`) ON DELETE CASCADE ON UPDATE CASCADE, >+ CONSTRAINT `anonymized_borrower_attributes_ibfk_2` FOREIGN KEY (`code`) REFERENCES `borrower_attribute_types` (`code`) ON DELETE CASCADE ON UPDATE CASCADE >+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; >+ >+-- > -- Table structure for table subscription_frequencies > -- > >-- >2.11.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 24151
:
95959
|
95960
|
95961
|
95962
|
95963
|
95964
|
95965
|
95966
|
95967
|
95968
|
95969
|
95970
|
95971
|
95972
|
95973
|
95974
|
95975
|
95976
|
97240
|
97241
|
97242
|
97243
|
97244
|
97245
|
97246
|
97247
|
97248
|
97249
|
97250
|
97251
|
97252
|
101034
|
101035
|
101036
|
101037
|
101038
|
101039
|
101040
|
101041
|
101042
|
101043
|
101044
|
101045
|
101046
|
101047
|
101048
|
101049
|
105801
|
105802
|
105803
|
105804
|
105805
|
105806
|
105807
|
105808
|
105809
|
105810
|
105811
|
105812
|
105813
|
105814
|
105815
|
105816
|
106032
|
106033
|
106034
|
106035
|
106036
|
106037
|
106038
|
106039
|
106040
|
106041
|
106042
|
106043
|
106044
|
106045
|
106046
|
106047
|
106048
|
106049
|
106195
|
106255
|
107127
|
107225