<<

NAME

Koha::Schema::Result::SearchField

TABLE: search_field

ACCESSORS

id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

name

  data_type: 'varchar'
  is_nullable: 0
  size: 255

the name of the field as it will be stored in the search engine

label

  data_type: 'varchar'
  is_nullable: 0
  size: 255

the human readable name of the field, for display

type

  data_type: 'enum'
  extra: {list => ["string","date","number","boolean","sum"]}
  is_nullable: 0

what type of data this holds, relevant when storing it in the search engine

PRIMARY KEY

UNIQUE CONSTRAINTS

name

RELATIONS

search_marc_to_fields

Type: has_many

Related object: Koha::Schema::Result::SearchMarcToField

<<