|
Lines 1267-1272
CREATE TABLE `borrower_attribute_types` (
Link Here
|
| 1267 |
`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)', |
1267 |
`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)', |
| 1268 |
`mandatory` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'defines if the attribute is mandatory or not in the staff interface', |
1268 |
`mandatory` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'defines if the attribute is mandatory or not in the staff interface', |
| 1269 |
`opac_mandatory` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'defines if the attribute is mandatory or not in the OPAC', |
1269 |
`opac_mandatory` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'defines if the attribute is mandatory or not in the OPAC', |
|
|
1270 |
`display_order` int(11) DEFAULT NULL COMMENT 'the order in which this attribute type appears in patron form', |
| 1270 |
PRIMARY KEY (`code`), |
1271 |
PRIMARY KEY (`code`), |
| 1271 |
KEY `auth_val_cat_idx` (`authorised_value_category`), |
1272 |
KEY `auth_val_cat_idx` (`authorised_value_category`), |
| 1272 |
KEY `category_code` (`category_code`), |
1273 |
KEY `category_code` (`category_code`), |
| 1273 |
- |
|
|