<<

NAME

Koha::Schema::Result::Virtualshelve

TABLE: virtualshelves

ACCESSORS

shelfnumber

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

shelfname

  data_type: 'varchar'
  is_nullable: 1
  size: 255

owner

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 1

category

  data_type: 'varchar'
  is_nullable: 1
  size: 1

sortfield

  data_type: 'varchar'
  default_value: 'title'
  is_nullable: 1
  size: 16

lastmodified

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

created_on

  data_type: 'datetime'
  datetime_undef_if_invalid: 1
  is_nullable: 0

allow_add

  data_type: 'tinyint'
  default_value: 0
  is_nullable: 1

allow_delete_own

  data_type: 'tinyint'
  default_value: 1
  is_nullable: 1

allow_delete_other

  data_type: 'tinyint'
  default_value: 0
  is_nullable: 1

PRIMARY KEY

RELATIONS

owner

Type: belongs_to

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

virtualshelfcontents

Type: has_many

Related object: Koha::Schema::Result::Virtualshelfcontent

virtualshelfshares

Type: has_many

Related object: Koha::Schema::Result::Virtualshelfshare

<<