Lines 5241-5246
DROP TABLE IF EXISTS `search_marc_to_field`;
Link Here
|
5241 |
/*!40101 SET character_set_client = utf8 */; |
5241 |
/*!40101 SET character_set_client = utf8 */; |
5242 |
CREATE TABLE `search_marc_to_field` ( |
5242 |
CREATE TABLE `search_marc_to_field` ( |
5243 |
`search` tinyint(1) NOT NULL DEFAULT 1, |
5243 |
`search` tinyint(1) NOT NULL DEFAULT 1, |
|
|
5244 |
`filter` varchar(100) NOT NULL DEFAULT '' COMMENT 'specify a filter to be applied to field', |
5244 |
`search_marc_map_id` int(11) NOT NULL, |
5245 |
`search_marc_map_id` int(11) NOT NULL, |
5245 |
`search_field_id` int(11) NOT NULL, |
5246 |
`search_field_id` int(11) NOT NULL, |
5246 |
`facet` tinyint(1) DEFAULT 0 COMMENT 'true if a facet field should be generated for this', |
5247 |
`facet` tinyint(1) DEFAULT 0 COMMENT 'true if a facet field should be generated for this', |
5247 |
- |
|
|