From 6c2d08fa1f0794358f5f6a104c01cf14c47eefcc Mon Sep 17 00:00:00 2001 From: Peter Crellan Kelly Date: Mon, 25 Mar 2013 16:58:28 +1300 Subject: [PATCH] Bug 9919: Correct syntax error caused by missing comma. --- 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 af1de22..a6760d4 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -1019,7 +1019,7 @@ CREATE TABLE `issuingrules` ( -- circulation and fine rules `hardduedate` date default NULL, -- hard due date `hardduedatecompare` tinyint NOT NULL default "0", -- type of hard due date (1 = after, 0 = on, -1 = before) `renewalsallowed` smallint(6) NOT NULL default "0", -- how many renewals are allowed - `renewalperiod` int(4) default NULL -- renewal period in the unit set in issuingrules.lengthunit + `renewalperiod` int(4) default NULL, -- renewal period in the unit set in issuingrules.lengthunit `reservesallowed` smallint(6) NOT NULL default "0", -- how many holds are allowed `branchcode` varchar(10) NOT NULL default '', -- the branch this rule is for (branches.branchcode) overduefinescap decimal default NULL, -- the maximum amount of an overdue fine -- 1.7.4.1