Lines 4636-4642
DROP TABLE IF EXISTS `patron_consent`;
Link Here
|
4636 |
CREATE TABLE `patron_consent` ( |
4636 |
CREATE TABLE `patron_consent` ( |
4637 |
`id` int(11) NOT NULL AUTO_INCREMENT, |
4637 |
`id` int(11) NOT NULL AUTO_INCREMENT, |
4638 |
`borrowernumber` int(11) NOT NULL, |
4638 |
`borrowernumber` int(11) NOT NULL, |
4639 |
`type` enum('GDPR_PROCESSING') DEFAULT NULL COMMENT 'allows for future extension', |
4639 |
`type` tinytext COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'consent type, could be custom type', |
4640 |
`given_on` datetime DEFAULT NULL, |
4640 |
`given_on` datetime DEFAULT NULL, |
4641 |
`refused_on` datetime DEFAULT NULL, |
4641 |
`refused_on` datetime DEFAULT NULL, |
4642 |
PRIMARY KEY (`id`), |
4642 |
PRIMARY KEY (`id`), |
4643 |
- |
|
|