<<

NAME

Koha::Schema::Result::AdditionalField

TABLE: additional_fields

ACCESSORS

id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

primary key identifier

tablename

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

tablename of the new field

name

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

name of the field

authorised_value_category

  data_type: 'varchar'
  is_nullable: 1
  size: 32

is an authorised value category

marcfield

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

contains the marc field to copied into the record

marcfield_mode

  data_type: 'enum'
  default_value: 'get'
  extra: {list => ["get","set"]}
  is_nullable: 0

mode of operation (get or set) for marcfield

searchable

  data_type: 'tinyint'
  default_value: 0
  is_nullable: 0

is the field searchable?

PRIMARY KEY

UNIQUE CONSTRAINTS

fields_uniq

RELATIONS

additional_field_values

Type: has_many

Related object: Koha::Schema::Result::AdditionalFieldValue

<<