Lines 2763-2769
CREATE TABLE `deletedborrowers` (
Link Here
|
2763 |
`updated_on` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'time of last change could be useful for synchronization with external systems (among others)', |
2763 |
`updated_on` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'time of last change could be useful for synchronization with external systems (among others)', |
2764 |
`lastseen` datetime DEFAULT NULL COMMENT 'last time a patron has been seen (connected at the OPAC or staff interface)', |
2764 |
`lastseen` datetime DEFAULT NULL COMMENT 'last time a patron has been seen (connected at the OPAC or staff interface)', |
2765 |
`lang` varchar(25) NOT NULL DEFAULT 'default' COMMENT 'lang to use to send notices to this patron', |
2765 |
`lang` varchar(25) NOT NULL DEFAULT 'default' COMMENT 'lang to use to send notices to this patron', |
2766 |
`login_attempts` int(4) NOT NULL DEFAULT 0 COMMENT 'number of failed login attemps', |
2766 |
`login_attempts` int(4) NOT NULL DEFAULT 0 COMMENT 'number of failed login attempts', |
2767 |
`overdrive_auth_token` mediumtext DEFAULT NULL COMMENT 'persist OverDrive auth token', |
2767 |
`overdrive_auth_token` mediumtext DEFAULT NULL COMMENT 'persist OverDrive auth token', |
2768 |
`anonymized` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'flag for data anonymization', |
2768 |
`anonymized` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'flag for data anonymization', |
2769 |
`autorenew_checkouts` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'flag for allowing auto-renewal', |
2769 |
`autorenew_checkouts` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'flag for allowing auto-renewal', |