Lines 1261-1266
CREATE TABLE `borrower_attribute_types` (
Link Here
|
1261 |
`class` varchar(255) NOT NULL DEFAULT '' COMMENT 'defines a class for an attribute_type', |
1261 |
`class` varchar(255) NOT NULL DEFAULT '' COMMENT 'defines a class for an attribute_type', |
1262 |
`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)', |
1262 |
`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 |
`mandatory` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'defines if the attribute is mandatory or not', |
1263 |
`mandatory` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'defines if the attribute is mandatory or not', |
|
|
1264 |
`display_order` int(11) DEFAULT NULL COMMENT 'the order in which this attribute type appears in patron form', |
1264 |
PRIMARY KEY (`code`), |
1265 |
PRIMARY KEY (`code`), |
1265 |
KEY `auth_val_cat_idx` (`authorised_value_category`), |
1266 |
KEY `auth_val_cat_idx` (`authorised_value_category`), |
1266 |
KEY `category_code` (`category_code`), |
1267 |
KEY `category_code` (`category_code`), |
1267 |
- |
|
|