<<

NAME

Koha::Schema::Result::Linktracker

TABLE: linktracker

ACCESSORS

id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

primary key identifier

biblionumber

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 1

biblionumber of the record the link is from

itemnumber

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 1

itemnumber if applicable that the link was from

borrowernumber

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 1

borrowernumber who clicked the link

url

  data_type: 'mediumtext'
  is_nullable: 1

the link itself

timeclicked

  data_type: 'datetime'
  datetime_undef_if_invalid: 1
  is_nullable: 1

the date and time the link was clicked

PRIMARY KEY

RELATIONS

biblionumber

Type: belongs_to

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

borrowernumber

Type: belongs_to

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

itemnumber

Type: belongs_to

Related object: Koha::Schema::Result::Item

<<