From 0558819523d789907fe91594ba44de8df6421770 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Fri, 5 Oct 2018 14:15:42 +0000 Subject: [PATCH] Bug 18591: (QA follow-up) Fix merge error in kohastructure.sql --- installer/data/mysql/kohastructure.sql | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index ea37848..280dd35 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -4208,11 +4208,13 @@ CREATE TABLE `oauth_access_tokens` ( `client_id` VARCHAR(191) NOT NULL, -- the client id the access token belongs to `expires` INT NOT NULL, -- expiration time in seconds PRIMARY KEY (`access_token`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; +-- -- Table structure for table illcomments -- -DROP TABLE IF EXISTS illcomments; +DROP TABLE IF EXISTS `illcomments`; CREATE TABLE illcomments ( illcomment_id int(11) NOT NULL AUTO_INCREMENT, -- Unique ID of the comment illrequest_id bigint(20) unsigned NOT NULL, -- ILL request number -- 2.1.4