From b9dc107914b294ca4f76ef1cfba9cc6cd4d226e5 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Mon, 12 Jul 2021 15:37:14 +0200 Subject: [PATCH] Bug 20472: Add kohastructure changes Signed-off-by: Jonathan Druart --- installer/data/mysql/kohastructure.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index 70b7e5346e..58dadc1541 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -766,6 +766,8 @@ CREATE TABLE `article_requests` ( `patron_notes` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` enum('PENDING','PROCESSING','COMPLETED','CANCELED') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'PENDING', `notes` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, + `format` enum('PHOTOCOPY', 'SCAN') NOT NULL DEFAULT 'PHOTOCOPY', + `urls` MEDIUMTEXT, `created_on` timestamp NULL DEFAULT NULL COMMENT 'Be careful with two timestamps in one table not allowing NULL', `updated_on` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), PRIMARY KEY (`id`), -- 2.39.5