<<

NAME

Koha::Schema::Result::ItemGroup

TABLE: item_groups

ACCESSORS

item_group_id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

id for the items group

biblio_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 0

id for the bibliographic record the group belongs to

display_order

  data_type: 'integer'
  default_value: 0
  is_nullable: 0

The 'sort order' for item_groups

description

  data_type: 'mediumtext'
  is_nullable: 1

A group description

created_on

  data_type: 'timestamp'
  datetime_undef_if_invalid: 1
  is_nullable: 1

Time and date the group was created

updated_on

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

Time and date of the latest change on the group

PRIMARY KEY

RELATIONS

biblio

Type: belongs_to

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

item_group_items

Type: has_many

Related object: Koha::Schema::Result::ItemGroupItem

old_reserves

Type: has_many

Related object: Koha::Schema::Result::OldReserve

reserves

Type: has_many

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

<<