Bugzilla – Attachment 87840 Details for
Bug 22532
Remove "random" from Z39.50
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 22532: Database update
Bug-22532-Database-update.patch (text/plain), 2.09 KB, created by
Marcel de Rooy
on 2019-04-12 06:01:48 UTC
(
hide
)
Description:
Bug 22532: Database update
Filename:
MIME Type:
Creator:
Marcel de Rooy
Created:
2019-04-12 06:01:48 UTC
Size:
2.09 KB
patch
obsolete
>From 0f4533c319d544d2b4934ca3dead9ecb1ffc5ae1 Mon Sep 17 00:00:00 2001 >From: Josef Moravec <josef.moravec@gmail.com> >Date: Mon, 18 Mar 2019 16:48:51 +0000 >Subject: [PATCH] Bug 22532: Database update >Content-Type: text/plain; charset=utf-8 > >Signed-off-by: Hayley Mapley <hayleymapley@catalyst.net.nz> > >Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> >--- > .../atomicupdate/Bug22532_remove_import_records_z39random.perl | 10 ++++++++++ > installer/data/mysql/kohastructure.sql | 1 - > 2 files changed, 10 insertions(+), 1 deletion(-) > create mode 100644 installer/data/mysql/atomicupdate/Bug22532_remove_import_records_z39random.perl > >diff --git a/installer/data/mysql/atomicupdate/Bug22532_remove_import_records_z39random.perl b/installer/data/mysql/atomicupdate/Bug22532_remove_import_records_z39random.perl >new file mode 100644 >index 0000000000..553fb946f6 >--- /dev/null >+++ b/installer/data/mysql/atomicupdate/Bug22532_remove_import_records_z39random.perl >@@ -0,0 +1,10 @@ >+$DBversion = 'XXX'; # will be replaced by the RM >+if( CheckVersion( $DBversion ) ) { >+ if( column_exists( 'import_records', 'z3950random' ) ) { >+ $dbh->do( "ALTER TABLE import_records DROP COLUMN z3950random" ); >+ } >+ >+ # Always end with this (adjust the bug info) >+ SetVersion( $DBversion ); >+ print "Upgrade to $DBversion done (Bug 22532 - Remove import_records z3950random column)\n"; >+} >diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql >index 8d7fee9872..1014eb38aa 100644 >--- a/installer/data/mysql/kohastructure.sql >+++ b/installer/data/mysql/kohastructure.sql >@@ -738,7 +738,6 @@ CREATE TABLE `import_records` ( > `status` enum('error', 'staged', 'imported', 'reverted', 'items_reverted', 'ignored') NOT NULL default 'staged', > `import_error` LONGTEXT, > `encoding` varchar(40) NOT NULL default '', >- `z3950random` varchar(40) default NULL, > PRIMARY KEY (`import_record_id`), > CONSTRAINT `import_records_ifbk_1` FOREIGN KEY (`import_batch_id`) > REFERENCES `import_batches` (`import_batch_id`) ON DELETE CASCADE ON UPDATE CASCADE, >-- >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 22532
:
86724
|
86725
|
87824
|
87825
|
87839
| 87840