From b225e3bd93d97264a36aeead3dcca9d3f91bb65c 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 --- installer/data/mysql/kohastructure.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.10.4