Lines 755-760
CREATE TABLE `article_requests` (
Link Here
|
755 |
`urls` MEDIUMTEXT, |
755 |
`urls` MEDIUMTEXT, |
756 |
`created_on` timestamp NULL DEFAULT NULL COMMENT 'Be careful with two timestamps in one table not allowing NULL', |
756 |
`created_on` timestamp NULL DEFAULT NULL COMMENT 'Be careful with two timestamps in one table not allowing NULL', |
757 |
`updated_on` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), |
757 |
`updated_on` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), |
|
|
758 |
`toc_request` tinyint(4) NOT NULL DEFAULT 0 COMMENT 'borrower requested table of contents', |
758 |
PRIMARY KEY (`id`), |
759 |
PRIMARY KEY (`id`), |
759 |
KEY `borrowernumber` (`borrowernumber`), |
760 |
KEY `borrowernumber` (`borrowernumber`), |
760 |
KEY `biblionumber` (`biblionumber`), |
761 |
KEY `biblionumber` (`biblionumber`), |
761 |
- |
|
|