Lines 4690-4696
DROP TABLE IF EXISTS `patron_consent`;
Link Here
|
4690 |
CREATE TABLE `patron_consent` ( |
4690 |
CREATE TABLE `patron_consent` ( |
4691 |
`id` int(11) NOT NULL AUTO_INCREMENT, |
4691 |
`id` int(11) NOT NULL AUTO_INCREMENT, |
4692 |
`borrowernumber` int(11) NOT NULL, |
4692 |
`borrowernumber` int(11) NOT NULL, |
4693 |
`type` enum('GDPR_PROCESSING') DEFAULT NULL COMMENT 'allows for future extension', |
4693 |
`type` tinytext COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'consent type, could be custom type', |
4694 |
`given_on` datetime DEFAULT NULL, |
4694 |
`given_on` datetime DEFAULT NULL, |
4695 |
`refused_on` datetime DEFAULT NULL, |
4695 |
`refused_on` datetime DEFAULT NULL, |
4696 |
PRIMARY KEY (`id`), |
4696 |
PRIMARY KEY (`id`), |
4697 |
- |
|
|