Lines 2723-2728
CREATE TABLE `accountlines` (
Link Here
|
2723 |
`notify_level` int(2) NOT NULL default 0, |
2723 |
`notify_level` int(2) NOT NULL default 0, |
2724 |
`note` text NULL default NULL, |
2724 |
`note` text NULL default NULL, |
2725 |
`manager_id` int(11) NULL, |
2725 |
`manager_id` int(11) NULL, |
|
|
2726 |
`branchcode` VARCHAR( 10 ) NULL DEFAULT NULL, -- the branchcode of the library where a payment was made, a manual invoice created, etc. |
2726 |
PRIMARY KEY (`accountlines_id`), |
2727 |
PRIMARY KEY (`accountlines_id`), |
2727 |
KEY `acctsborridx` (`borrowernumber`), |
2728 |
KEY `acctsborridx` (`borrowernumber`), |
2728 |
KEY `timeidx` (`timestamp`), |
2729 |
KEY `timeidx` (`timestamp`), |
2729 |
- |
|
|