From 50609ebdee68d3da2b2ec419b2fd119f24fd982b Mon Sep 17 00:00:00 2001 From: Martin Renvoize Date: Mon, 10 Feb 2020 14:30:19 +0000 Subject: [PATCH] Bug 17702: (QA follow-up) Add new field to kohastructure Signed-off-by: Martin Renvoize Signed-off-by: Kyle M Hall --- installer/data/mysql/kohastructure.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index f3b965f23c..8ec1791c66 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -2596,6 +2596,7 @@ CREATE TABLE `account_credit_types` ( `description` varchar(200) DEFAULT NULL, `can_be_added_manually` tinyint(4) NOT NULL DEFAULT 1, `is_system` tinyint(1) NOT NULL DEFAULT 0, + `archived` tinyint(1) NOT NULL DEFAULT 0, -- boolean flag to denote if this till is archived or not PRIMARY KEY (`code`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- 2.21.1 (Apple Git-122.3)