<<

NAME

Koha::Schema::Result::CheckoutRenewal

TABLE: checkout_renewals

ACCESSORS

renewal_id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

checkout_id

  data_type: 'integer'
  is_nullable: 1

the id of the checkout this renewal pertains to

renewer_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 1

the id of the user who processed the renewal

seen

  data_type: 'tinyint'
  default_value: 0
  is_nullable: 1

boolean denoting whether the item was present or not

interface

  data_type: 'varchar'
  is_nullable: 0
  size: 16

the interface this renewal took place on

timestamp

  data_type: 'timestamp'
  datetime_undef_if_invalid: 1
  default_value: current_timestamp
  is_nullable: 0

the date and time the renewal took place

renewal_type

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

whether the renewal was an automatic or manual renewal

PRIMARY KEY

RELATIONS

renewer

Type: belongs_to

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

checkout

Type: belongs_to

Related object: Koha::Schema::Result::Issue

old_checkout

Type: belongs_to

Related object: Koha::Schema::Result::OldIssue

<<