Lines 837-842
CREATE TABLE `issuingrules` ( -- circulation and fine rules
Link Here
|
837 |
`fine` decimal(28,6) default NULL, -- fine amount |
837 |
`fine` decimal(28,6) default NULL, -- fine amount |
838 |
`finedays` int(11) default NULL, -- suspension in days |
838 |
`finedays` int(11) default NULL, -- suspension in days |
839 |
`maxsuspensiondays` int(11) default NULL, -- max suspension days |
839 |
`maxsuspensiondays` int(11) default NULL, -- max suspension days |
|
|
840 |
`suspension_chargeperiod` int(11) default '1', -- how often the finedays is charged |
840 |
`firstremind` int(11) default NULL, -- fine grace period |
841 |
`firstremind` int(11) default NULL, -- fine grace period |
841 |
`chargeperiod` int(11) default NULL, -- how often the fine amount is charged |
842 |
`chargeperiod` int(11) default NULL, -- how often the fine amount is charged |
842 |
`chargeperiod_charge_at` tinyint(1) NOT NULL DEFAULT '0', -- Should fine be given at the start ( 1 ) or the end ( 0 ) of the period |
843 |
`chargeperiod_charge_at` tinyint(1) NOT NULL DEFAULT '0', -- Should fine be given at the start ( 1 ) or the end ( 0 ) of the period |
843 |
- |
|
|