Lines 1261-1267
CREATE TABLE `borrower_attribute_types` (
Link Here
|
1261 |
`category_code` varchar(10) DEFAULT NULL COMMENT 'defines a category for an attribute_type', |
1261 |
`category_code` varchar(10) DEFAULT NULL COMMENT 'defines a category for an attribute_type', |
1262 |
`class` varchar(255) NOT NULL DEFAULT '' COMMENT 'defines a class for an attribute_type', |
1262 |
`class` varchar(255) NOT NULL DEFAULT '' COMMENT 'defines a class for an attribute_type', |
1263 |
`keep_for_pseudonymization` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'defines if this field is copied to anonymized_borrower_attributes (1 for yes, 0 for no)', |
1263 |
`keep_for_pseudonymization` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'defines if this field is copied to anonymized_borrower_attributes (1 for yes, 0 for no)', |
1264 |
`mandatory` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'defines if the attribute is mandatory or not in the staff client', |
1264 |
`mandatory` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'defines if the attribute is mandatory or not in the staff interface', |
1265 |
`opac_mandatory` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'defines if the attribute is mandatory or not in the OPAC', |
1265 |
`opac_mandatory` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'defines if the attribute is mandatory or not in the OPAC', |
1266 |
PRIMARY KEY (`code`), |
1266 |
PRIMARY KEY (`code`), |
1267 |
KEY `auth_val_cat_idx` (`authorised_value_category`), |
1267 |
KEY `auth_val_cat_idx` (`authorised_value_category`), |
1268 |
- |
|
|