<<

NAME

Koha::Schema::Result::Accountline

TABLE: accountlines

ACCESSORS

accountlines_id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

borrowernumber

  data_type: 'integer'
  default_value: 0
  is_foreign_key: 1
  is_nullable: 0

accountno

  data_type: 'smallint'
  default_value: 0
  is_nullable: 0

itemnumber

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 1

date

  data_type: 'date'
  datetime_undef_if_invalid: 1
  is_nullable: 1

amount

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

description

  data_type: 'mediumtext'
  is_nullable: 1

dispute

  data_type: 'mediumtext'
  is_nullable: 1

accounttype

  data_type: 'varchar'
  is_nullable: 1
  size: 5

amountoutstanding

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

lastincrement

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

timestamp

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

notify_id

  data_type: 'integer'
  default_value: 0
  is_nullable: 0

notify_level

  data_type: 'integer'
  default_value: 0
  is_nullable: 0

note

  data_type: 'text'
  is_nullable: 1

manager_id

  data_type: 'integer'
  is_nullable: 1

PRIMARY KEY

RELATIONS

borrowernumber

Type: belongs_to

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

itemnumber

Type: belongs_to

Related object: Koha::Schema::Result::Item

<<