<<

NAME

Koha::Schema::Result::TagAll

TABLE: tags_all

ACCESSORS

tag_id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

unique id and primary key

borrowernumber

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 1

the patron who added the tag (borrowers.borrowernumber)

biblionumber

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 0

the bib record this tag was left on (biblio.biblionumber)

term

  data_type: 'varchar'
  is_nullable: 0
  size: 191

the tag

language

  data_type: 'integer'
  is_nullable: 1

the language the tag was left in

date_created

  data_type: 'datetime'
  datetime_undef_if_invalid: 1
  is_nullable: 0

the date the tag was added

PRIMARY KEY

RELATIONS

biblionumber

Type: belongs_to

Related object: Koha::Schema::Result::Biblio

borrowernumber

Type: belongs_to

Related object: Koha::Schema::Result::Borrower

<<