Lines 226-231
CREATE TABLE `borrower_attribute_types` ( -- definitions for custom patron field
Link Here
|
226 |
`display_checkout` tinyint(1) NOT NULL default 0,-- defines if this field displays in checkout screens |
226 |
`display_checkout` tinyint(1) NOT NULL default 0,-- defines if this field displays in checkout screens |
227 |
`category_code` VARCHAR(10) NULL DEFAULT NULL,-- defines a category for an attribute_type |
227 |
`category_code` VARCHAR(10) NULL DEFAULT NULL,-- defines a category for an attribute_type |
228 |
`class` VARCHAR(255) NOT NULL DEFAULT '',-- defines a class for an attribute_type |
228 |
`class` VARCHAR(255) NOT NULL DEFAULT '',-- defines a class for an attribute_type |
|
|
229 |
`mandatory` tinyint(1) NOT NULL DEFAULT 0, -- defines if the attribute is mandatory or not |
229 |
PRIMARY KEY (`code`), |
230 |
PRIMARY KEY (`code`), |
230 |
KEY `auth_val_cat_idx` (`authorised_value_category`) |
231 |
KEY `auth_val_cat_idx` (`authorised_value_category`) |
231 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
232 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
232 |
- |
|
|