From 4a55791211adbb979e43d63dd80c0a9174ed2bdb Mon Sep 17 00:00:00 2001 From: Marc Veron Date: Tue, 11 Dec 2012 10:43:18 +0100 Subject: [PATCH] Bug 9246: Koha installer crash with mysql "Error 1166 at line 1871: Incorrect column name 'closed" Reason: line 1923 in kohastructure.sql had whitespace between back tick on Column name "closed". Patch removes white space on given line. Signed-off-by: Jonathan Druart Signed-off-by: Kyle M Hall --- installer/data/mysql/kohastructure.sql | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index f68c9c7..ddf4b0f 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -1920,7 +1920,7 @@ CREATE TABLE `subscription` ( `opacdisplaycount` VARCHAR(10) NULL, `graceperiod` int(11) NOT NULL default '0', `enddate` date default NULL, - `closed ` INT(1) NOT NULL DEFAULT 0, + `closed` INT(1) NOT NULL DEFAULT 0, PRIMARY KEY (`subscriptionid`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- 1.7.2.5