Lines 3294-3299
CREATE TABLE `illrequests` (
Link Here
|
3294 |
`illrequest_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ILL request number', |
3294 |
`illrequest_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ILL request number', |
3295 |
`borrowernumber` int(11) DEFAULT NULL COMMENT 'Patron associated with request', |
3295 |
`borrowernumber` int(11) DEFAULT NULL COMMENT 'Patron associated with request', |
3296 |
`biblio_id` int(11) DEFAULT NULL COMMENT 'Potential bib linked to request', |
3296 |
`biblio_id` int(11) DEFAULT NULL COMMENT 'Potential bib linked to request', |
|
|
3297 |
`deleted_biblio_id` int(11) DEFAULT NULL COMMENT 'Deleted bib linked to request', |
3297 |
`due_date` datetime DEFAULT NULL COMMENT 'Custom date due specified by backend, leave NULL for default date_due calculation', |
3298 |
`due_date` datetime DEFAULT NULL COMMENT 'Custom date due specified by backend, leave NULL for default date_due calculation', |
3298 |
`branchcode` varchar(50) NOT NULL COMMENT 'The branch associated with the request', |
3299 |
`branchcode` varchar(50) NOT NULL COMMENT 'The branch associated with the request', |
3299 |
`status` varchar(50) DEFAULT NULL COMMENT 'Current Koha status of request', |
3300 |
`status` varchar(50) DEFAULT NULL COMMENT 'Current Koha status of request', |
3300 |
- |
|
|