Lines 1491-1497
CREATE TABLE `search_marc_map` (
Link Here
|
1491 |
id int(11) NOT NULL AUTO_INCREMENT, |
1491 |
id int(11) NOT NULL AUTO_INCREMENT, |
1492 |
index_name ENUM('biblios','authorities') NOT NULL COMMENT 'what storage index this map is for', |
1492 |
index_name ENUM('biblios','authorities') NOT NULL COMMENT 'what storage index this map is for', |
1493 |
marc_type ENUM('marc21', 'unimarc', 'normarc') NOT NULL COMMENT 'what MARC type this map is for', |
1493 |
marc_type ENUM('marc21', 'unimarc', 'normarc') NOT NULL COMMENT 'what MARC type this map is for', |
1494 |
marc_field VARCHAR(255) NOT NULL COMMENT 'the MARC specifier for this field', |
1494 |
marc_field VARCHAR(255) NOT NULL COLLATE utf8mb4_bin COMMENT 'the MARC specifier for this field', |
1495 |
PRIMARY KEY(`id`), |
1495 |
PRIMARY KEY(`id`), |
1496 |
UNIQUE key `index_name` (`index_name`, `marc_field` (191), `marc_type`), |
1496 |
UNIQUE key `index_name` (`index_name`, `marc_field` (191), `marc_type`), |
1497 |
INDEX (`index_name`) |
1497 |
INDEX (`index_name`) |
1498 |
- |
|
|