Bugzilla – Attachment 82716 Details for
Bug 21753
issuingrules.chargename is unused and should be removed
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
[SIGNED-OFF] Bug 21753: DBRev to remove the field from the database
SIGNED-OFF-Bug-21753-DBRev-to-remove-the-field-fro.patch (text/plain), 2.06 KB, created by
Aleisha Amohia
on 2018-11-28 23:13:05 UTC
(
hide
)
Description:
[SIGNED-OFF] Bug 21753: DBRev to remove the field from the database
Filename:
MIME Type:
Creator:
Aleisha Amohia
Created:
2018-11-28 23:13:05 UTC
Size:
2.06 KB
patch
obsolete
>From ee8bd77f1752564509a27fe875e9043c44e083a0 Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Fri, 2 Nov 2018 10:04:46 +0000 >Subject: [PATCH] [SIGNED-OFF] Bug 21753: DBRev to remove the field from the > database > >Signed-off-by: Aleisha Amohia <aleishaamohia@hotmail.com> >--- > installer/data/mysql/atomicupdate/bug_21753.perl | 10 ++++++++++ > installer/data/mysql/kohastructure.sql | 1 - > 2 files changed, 10 insertions(+), 1 deletion(-) > create mode 100644 installer/data/mysql/atomicupdate/bug_21753.perl > >diff --git a/installer/data/mysql/atomicupdate/bug_21753.perl b/installer/data/mysql/atomicupdate/bug_21753.perl >new file mode 100644 >index 0000000..f5e5d44 >--- /dev/null >+++ b/installer/data/mysql/atomicupdate/bug_21753.perl >@@ -0,0 +1,10 @@ >+$DBversion = 'XXX'; # will be replaced by the RM >+if( CheckVersion( $DBversion ) ) { >+ if( column_exists( 'issuingrules', 'chargename' ) ) { >+ $dbh->do( "ALTER TABLE issuingrules DROP chargename" ); >+ } >+ >+ # Always end with this (adjust the bug info) >+ SetVersion( $DBversion ); >+ print "Upgrade to $DBversion done (Bug 21753: Drop chargename from issuingrules )\n"; >+} >diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql >index c3c9570..82ba696 100644 >--- a/installer/data/mysql/kohastructure.sql >+++ b/installer/data/mysql/kohastructure.sql >@@ -872,7 +872,6 @@ CREATE TABLE `issuingrules` ( -- circulation and fine rules > `chargeperiod` int(11) default NULL, -- how often the fine amount is charged > `chargeperiod_charge_at` tinyint(1) NOT NULL DEFAULT '0', -- Should fine be given at the start ( 1 ) or the end ( 0 ) of the period > `accountsent` int(11) default NULL, -- not used? always NULL >- `chargename` varchar(100) default NULL, -- not used? always NULL > `maxissueqty` int(4) default NULL, -- total number of checkouts allowed > `maxonsiteissueqty` int(4) default NULL, -- total number of on-site checkouts allowed > `issuelength` int(4) default NULL, -- length of checkout in the unit set in issuingrules.lengthunit >-- >2.1.4
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 21753
:
81876
|
81877
|
82715
|
82716
|
82730
|
82731
|
82732