Bug 9919: Correct syntax error caused by missing comma.
Signed-off-by: Katrin Fischer <Katrin.Fischer.83@web.de> Simple fix for a bad problem. Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
This commit is contained in:
parent
a4f4d69c3b
commit
07228e5080
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue