<<

NAME

Koha::Schema::Result::Aqbudgetperiod

TABLE: aqbudgetperiods

ACCESSORS

budget_period_id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

primary key and unique number assigned by Koha

budget_period_startdate

  data_type: 'date'
  datetime_undef_if_invalid: 1
  is_nullable: 0

date when the budget starts

budget_period_enddate

  data_type: 'date'
  datetime_undef_if_invalid: 1
  is_nullable: 0

date when the budget ends

budget_period_active

  data_type: 'tinyint'
  default_value: 0
  is_nullable: 1

whether this budget is active or not (1 for yes, 0 for no)

budget_period_description

  data_type: 'longtext'
  is_nullable: 1

description assigned to this budget

budget_period_total

  data_type: 'decimal'
  is_nullable: 1
  size: [28,6]

total amount available in this budget

budget_period_locked

  data_type: 'tinyint'
  is_nullable: 1

whether this budget is locked or not (1 for yes, 0 for no)

sort1_authcat

  data_type: 'varchar'
  is_nullable: 1
  size: 10

statistical category for this budget

sort2_authcat

  data_type: 'varchar'
  is_nullable: 1
  size: 10

second statistical category for this budget

PRIMARY KEY

RELATIONS

aqbudgets

Type: has_many

Related object: Koha::Schema::Result::Aqbudget

<<