<<

NAME

Koha::Schema::Result::CurbsidePickup

TABLE: curbside_pickups

ACCESSORS

id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

borrowernumber

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 0

branchcode

  data_type: 'varchar'
  is_foreign_key: 1
  is_nullable: 0
  size: 10

scheduled_pickup_datetime

  data_type: 'datetime'
  datetime_undef_if_invalid: 1
  is_nullable: 0

staged_datetime

  data_type: 'datetime'
  datetime_undef_if_invalid: 1
  is_nullable: 1

staged_by

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 1

arrival_datetime

  data_type: 'datetime'
  datetime_undef_if_invalid: 1
  is_nullable: 1

delivered_datetime

  data_type: 'datetime'
  datetime_undef_if_invalid: 1
  is_nullable: 1

delivered_by

  data_type: 'integer'
  is_nullable: 1

notes

  data_type: 'text'
  is_nullable: 1

PRIMARY KEY

RELATIONS

borrowernumber

Type: belongs_to

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

branchcode

Type: belongs_to

Related object: Koha::Schema::Result::Branch

curbside_pickup_issues

Type: has_many

Related object: Koha::Schema::Result::CurbsidePickupIssue

staged_by

Type: belongs_to

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

<<