From: Martin Renvoize Date: Fri, 12 Jul 2019 13:08:56 +0000 (+0100) Subject: Bug 18930: (RM follow-up) Drop refund_lost_item_fee_rules X-Git-Tag: v19.11.00~1049 X-Git-Url: http://git.equinoxoli.org/?p=koha.git;a=commitdiff_plain;h=849275341067b25bcb193c64b1ae14814bc3104d Bug 18930: (RM follow-up) Drop refund_lost_item_fee_rules Signed-off-by: Martin Renvoize --- diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index 9b062d0..2c7f361 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -837,17 +837,6 @@ CREATE TABLE `issuingrules` ( -- circulation and fine rules ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- --- Table structure for table `refund_lost_item_fee_rules` --- - -DROP TABLE IF EXISTS `refund_lost_item_fee_rules`; -CREATE TABLE `refund_lost_item_fee_rules` ( -- refund lost item fee rules tbale - `branchcode` varchar(10) NOT NULL default '', -- the branch this rule is for (branches.branchcode) - `refund` tinyint(1) NOT NULL default 0, -- control wether to refund lost item fees on return - PRIMARY KEY (`branchcode`) -) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; - --- -- Table structure for table `items` --