Lines 753-758
CREATE TABLE `article_requests` (
Link Here
|
753 |
`notes` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
753 |
`notes` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
754 |
`format` enum('PHOTOCOPY', 'SCAN') NOT NULL DEFAULT 'PHOTOCOPY', |
754 |
`format` enum('PHOTOCOPY', 'SCAN') NOT NULL DEFAULT 'PHOTOCOPY', |
755 |
`urls` MEDIUMTEXT, |
755 |
`urls` MEDIUMTEXT, |
|
|
756 |
`cancellation_reason` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'optional authorised value AR_CANCELLATION', |
756 |
`created_on` timestamp NULL DEFAULT NULL COMMENT 'Be careful with two timestamps in one table not allowing NULL', |
757 |
`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(), |
758 |
`updated_on` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), |
758 |
PRIMARY KEY (`id`), |
759 |
PRIMARY KEY (`id`), |