Bugzilla – Attachment 125193 Details for
Bug 24454
currency formatting from JS
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 28854: Database update
Bug-28854-Database-update.patch (text/plain), 6.29 KB, created by
Martin Renvoize (ashimema)
on 2021-09-23 14:39:06 UTC
(
hide
)
Description:
Bug 28854: Database update
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2021-09-23 14:39:06 UTC
Size:
6.29 KB
patch
obsolete
>From aa18f89907ae10bb66d1c2149e0aa3e0011d885f Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@ptfs-europe.com> >Date: Thu, 23 Sep 2021 08:28:15 +0100 >Subject: [PATCH] Bug 28854: Database update > >https://bugs.koha-community.org/show_bug.cgi?id=24454 >--- > .../data/mysql/atomicupdate/bug_28854.perl | 65 +++++++++++++++++++ > installer/data/mysql/kohastructure.sql | 37 +++++++++++ > 2 files changed, 102 insertions(+) > create mode 100644 installer/data/mysql/atomicupdate/bug_28854.perl > >diff --git a/installer/data/mysql/atomicupdate/bug_28854.perl b/installer/data/mysql/atomicupdate/bug_28854.perl >new file mode 100644 >index 00000000000..5175621d68f >--- /dev/null >+++ b/installer/data/mysql/atomicupdate/bug_28854.perl >@@ -0,0 +1,65 @@ >+use Modern::Perl; >+ >+return { >+ bug_number => "28854", >+ description => "Item bundles support", >+ up => sub { >+ my ($args) = @_; >+ my ($dbh, $out) = @$args{qw(dbh out)}; >+ >+ if( !TableExists( 'item_bundles' ) ) { >+ $dbh->do(q{ >+ CREATE TABLE `item_bundles` ( >+ `item` int(11) NOT NULL, >+ `host` int(11) NOT NULL, >+ PRIMARY KEY (`host`, `item`), >+ UNIQUE KEY `item_bundles_uniq_1` (`item`), >+ CONSTRAINT `item_bundles_ibfk_1` FOREIGN KEY (`item`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE, >+ CONSTRAINT `item_bundles_ibfk_2` FOREIGN KEY (`host`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE >+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci >+ }); >+ } >+ say $out "item_bundles table added"; >+ >+ if( !TableExists( 'items_lost_issue' ) ) { >+ $dbh->do(q{ >+ CREATE TABLE `items_lost_issue` ( >+ `id` int(11) NOT NULL AUTO_INCREMENT, >+ `itemnumber` int(11) NOT NULL, >+ `issue_id` int(11) DEFAULT NULL, >+ `created_on` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), >+ PRIMARY KEY (`id`), >+ UNIQUE KEY `itemnumber` (`itemnumber`), >+ KEY `issue_id` (`issue_id`), >+ CONSTRAINT `items_lost_issue_ibfk_1` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE, >+ CONSTRAINT `items_lost_issue_ibfk_2` FOREIGN KEY (`issue_id`) REFERENCES `old_issues` (`issue_id`) ON DELETE SET NULL ON UPDATE CASCADE >+ ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci >+ }); >+ } >+ say $out "items_list_issue table added"; >+ >+ my ($lost_val) = $dbh->selectrow_array( "SELECT MAX(authorised_value) FROM authorised_values WHERE category = 'LOST'", {} ); >+ $lost_val++; >+ >+ $dbh->do(qq{ >+ INSERT INTO authorised_values (category,authorised_value,lib) VALUES ('LOST',$lost_val,'Missing from bundle') >+ }); >+ say $out "Missing from bundle LOST AV added"; >+ >+ my ($nfl_val) = $dbh->selectrow_array( "SELECT MAX(authorised_value) FROM authorised_values WHERE category = 'NOT_LOAN'", {} ); >+ $nfl_val++; >+ >+ $dbh->do(qq{ >+ INSERT INTO authorised_values (category,authorised_value,lib) VALUES ('NOT_LOAN',$nfl_val,'Added to bundle') >+ }); >+ say $out "Added to bundle NOT_LOAN AV added"; >+ >+ $dbh->do(qq{ >+ INSERT IGNORE INTO systempreferences( `variable`, `value`, `options`, `explanation`, `type` ) >+ VALUES >+ ( 'BundleLostValue', $lost_val, '', 'Sets the LOST AV value that represents "Missing from bundle" as a lost value', 'Free' ), >+ ( 'BundleNotLoanValue', $nfl_val, '', 'Sets the NOT_LOAN AV value that represents "Added to bundle" as a not for loan value', 'Free') >+ }); >+ say $out "System preferences added and set"; >+ } >+} >diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql >index f9e5c6453ee..a67f3368d65 100644 >--- a/installer/data/mysql/kohastructure.sql >+++ b/installer/data/mysql/kohastructure.sql >@@ -3063,6 +3063,23 @@ CREATE TABLE `items` ( > ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; > /*!40101 SET character_set_client = @saved_cs_client */; > >+-- >+-- Table structure for table item_bundles >+-- >+ >+DROP TABLE IF EXISTS `item_bundles`; >+/*!40101 SET @saved_cs_client = @@character_set_client */; >+/*!40101 SET character_set_client = utf8 */; >+CREATE TABLE `item_bundles` ( >+ `item` int(11) NOT NULL, >+ `host` int(11) NOT NULL, >+ PRIMARY KEY (`host`, `item`), >+ UNIQUE KEY `item_bundles_uniq_1` (`item`), >+ CONSTRAINT `item_bundles_ibfk_1` FOREIGN KEY (`item`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE, >+ CONSTRAINT `item_bundles_ibfk_2` FOREIGN KEY (`host`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE >+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; >+/*!40101 SET character_set_client = @saved_cs_client */; >+ > -- > -- Table structure for table `items_last_borrower` > -- >@@ -3083,6 +3100,26 @@ CREATE TABLE `items_last_borrower` ( > ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; > /*!40101 SET character_set_client = @saved_cs_client */; > >+-- >+-- Table structure for table `items_lost_issue` >+-- >+ >+DROP TABLE IF EXISTS `items_lost_issue`; >+/*!40101 SET @saved_cs_client = @@character_set_client */; >+/*!40101 SET character_set_client = utf8 */; >+CREATE TABLE `items_lost_issue` ( >+ `id` int(11) NOT NULL AUTO_INCREMENT, >+ `itemnumber` int(11) NOT NULL, >+ `issue_id` int(11) DEFAULT NULL, >+ `created_on` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), >+ PRIMARY KEY (`id`), >+ UNIQUE KEY `itemnumber` (`itemnumber`), >+ KEY `issue_id` (`issue_id`), >+ CONSTRAINT `items_lost_issue_ibfk_1` FOREIGN KEY (`itemnumber`) REFERENCES `items` (`itemnumber`) ON DELETE CASCADE ON UPDATE CASCADE, >+ CONSTRAINT `items_lost_issue_ibfk_2` FOREIGN KEY (`issue_id`) REFERENCES `old_issues` (`issue_id`) ON DELETE SET NULL ON UPDATE CASCADE >+) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; >+/*!40101 SET character_set_client = @saved_cs_client */; >+ > -- > -- Table structure for table `items_search_fields` > -- >-- >2.20.1
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 24454
:
97573
|
98228
|
125193
|
125194
|
125195
|
125196
|
125197
|
125198
|
125199