<<

NAME

Koha::Schema::Result::AuthorisedValue

TABLE: authorised_values

ACCESSORS

id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

unique key, used to identify the authorized value

category

  data_type: 'varchar'
  default_value: (empty string)
  is_foreign_key: 1
  is_nullable: 0
  size: 32

key used to identify the authorized value category

authorised_value

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

code use to identify the authorized value

lib

  data_type: 'varchar'
  is_nullable: 1
  size: 200

authorized value description as printed in the staff interface

lib_opac

  data_type: 'varchar'
  is_nullable: 1
  size: 200

authorized value description as printed in the OPAC

imageurl

  data_type: 'varchar'
  is_nullable: 1
  size: 200

authorized value URL

PRIMARY KEY

UNIQUE CONSTRAINTS

av_uniq

RELATIONS

authorised_values_branches

Type: has_many

Related object: Koha::Schema::Result::AuthorisedValuesBranch

category

Type: belongs_to

Related object: Koha::Schema::Result::AuthorisedValueCategory

illrequests

Type: has_many

Related object: Koha::Schema::Result::Illrequest

<<