<<

NAME

Koha::Schema::Result::LibraryGroup

TABLE: library_groups

ACCESSORS

id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

parent_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 1

branchcode

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

title

  data_type: 'varchar'
  is_nullable: 1
  size: 100

description

  data_type: 'mediumtext'
  is_nullable: 1

ft_hide_patron_info

  data_type: 'tinyint'
  default_value: 0
  is_nullable: 0

ft_search_groups_opac

  data_type: 'tinyint'
  default_value: 0
  is_nullable: 0

ft_search_groups_staff

  data_type: 'tinyint'
  default_value: 0
  is_nullable: 0

created_on

  data_type: 'timestamp'
  datetime_undef_if_invalid: 1
  is_nullable: 1

updated_on

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

PRIMARY KEY

UNIQUE CONSTRAINTS

title

RELATIONS

branchcode

Type: belongs_to

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

library_groups

Type: has_many

Related object: Koha::Schema::Result::LibraryGroup

parent

Type: belongs_to

Related object: Koha::Schema::Result::LibraryGroup

<<