Lines 855-861
CREATE TABLE `issuingrules` ( -- circulation and fine rules
Link Here
|
855 |
`chargeperiod` int(11) default NULL, -- how often the fine amount is charged |
855 |
`chargeperiod` int(11) default NULL, -- how often the fine amount is charged |
856 |
`chargeperiod_charge_at` tinyint(1) NOT NULL DEFAULT '0', -- Should fine be given at the start ( 1 ) or the end ( 0 ) of the period |
856 |
`chargeperiod_charge_at` tinyint(1) NOT NULL DEFAULT '0', -- Should fine be given at the start ( 1 ) or the end ( 0 ) of the period |
857 |
`accountsent` int(11) default NULL, -- not used? always NULL |
857 |
`accountsent` int(11) default NULL, -- not used? always NULL |
858 |
`chargename` varchar(100) default NULL, -- not used? always NULL |
|
|
859 |
`maxissueqty` int(4) default NULL, -- total number of checkouts allowed |
858 |
`maxissueqty` int(4) default NULL, -- total number of checkouts allowed |
860 |
`maxonsiteissueqty` int(4) default NULL, -- total number of on-site checkouts allowed |
859 |
`maxonsiteissueqty` int(4) default NULL, -- total number of on-site checkouts allowed |
861 |
`issuelength` int(4) default NULL, -- length of checkout in the unit set in issuingrules.lengthunit |
860 |
`issuelength` int(4) default NULL, -- length of checkout in the unit set in issuingrules.lengthunit |
862 |
- |
|
|