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