|
Lines 1263-1268
CREATE TABLE `borrower_attribute_types` (
Link Here
|
| 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 interface', |
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 |
`display_order` int(11) DEFAULT NULL COMMENT 'the order in which this attribute type appears in patron form', |
| 1266 |
PRIMARY KEY (`code`), |
1267 |
PRIMARY KEY (`code`), |
| 1267 |
KEY `auth_val_cat_idx` (`authorised_value_category`), |
1268 |
KEY `auth_val_cat_idx` (`authorised_value_category`), |
| 1268 |
KEY `category_code` (`category_code`), |
1269 |
KEY `category_code` (`category_code`), |
| 1269 |
- |
|
|