<<

NAME

Koha::Schema::Result::ClubHoldsToPatronHold

TABLE: club_holds_to_patron_holds

ACCESSORS

id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

club_hold_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 0

patron_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 0

hold_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 1

error_code

  data_type: 'enum'
  extra: {list => ["damaged","ageRestricted","itemAlreadyOnHold","tooManyHoldsForThisRecord","tooManyReservesToday","tooManyReserves","notReservable","cannotReserveFromOtherBranches","libraryNotFound","libraryNotPickupLocation","cannotBeTransferred"]}
  is_nullable: 1

error_message

  data_type: 'varchar'
  is_nullable: 1
  size: 100

PRIMARY KEY

RELATIONS

club_hold

Type: belongs_to

Related object: Koha::Schema::Result::ClubHold

hold

Type: belongs_to

Related object: Koha::Schema::Result::Reserve

patron

Type: belongs_to

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

<<