<<

NAME

Koha::Schema::Result::RepeatableHoliday

TABLE: repeatable_holidays

ACCESSORS

id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

unique identifier assigned by Koha

branchcode

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

foreign key from the branches table, defines which branch this closing is for

weekday

  data_type: 'smallint'
  is_nullable: 1

day of the week (0=Sunday, 1=Monday, etc) this closing is repeated on

day

  data_type: 'smallint'
  is_nullable: 1

day of the month this closing is on

month

  data_type: 'smallint'
  is_nullable: 1

month this closing is in

title

  data_type: 'varchar'
  default_value: (empty string)
  is_nullable: 0
  size: 50

title of this closing

description

  data_type: 'mediumtext'
  is_nullable: 0

description for this closing

PRIMARY KEY

RELATIONS

branchcode

Type: belongs_to

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

<<