<<

NAME

Koha::Schema::Result::SearchMarcToField

TABLE: search_marc_to_field

ACCESSORS

search

  data_type: 'tinyint'
  default_value: 1
  is_nullable: 0

filter

  data_type: 'varchar'
  default_value: (empty string)
  is_nullable: 0
  size: 100

specify a filter to be applied to field

search_marc_map_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 0

search_field_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 0

facet

  data_type: 'tinyint'
  default_value: 0
  is_nullable: 1

true if a facet field should be generated for this

suggestible

  data_type: 'tinyint'
  default_value: 0
  is_nullable: 1

true if this field can be used to generate suggestions for browse

sort

  data_type: 'tinyint'
  default_value: 1
  is_nullable: 0

Sort defaults to 1 (Yes) and creates sort fields in the index, 0 (no) will prevent this

PRIMARY KEY

RELATIONS

search_field

Type: belongs_to

Related object: Koha::Schema::Result::SearchField

search_marc_map

Type: belongs_to

Related object: Koha::Schema::Result::SearchMarcMap

<<