<<

NAME

Koha::Schema::Result::CourseReserve

TABLE: course_reserves

ACCESSORS

cr_id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

course_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 0

foreign key to link to courses.course_id

ci_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 0

foreign key to link to courses_items.ci_id

staff_note

  data_type: 'longtext'
  is_nullable: 1

staff only note

public_note

  data_type: 'longtext'
  is_nullable: 1

public, OPAC visible note

timestamp

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

PRIMARY KEY

UNIQUE CONSTRAINTS

pseudo_key

RELATIONS

ci

Type: belongs_to

Related object: Koha::Schema::Result::CourseItem

course

Type: belongs_to

Related object: Koha::Schema::Result::Course

<<