<<

NAME

Koha::Schema::Result::ImportItem

TABLE: import_items

ACCESSORS

import_items_id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

import_record_id

  data_type: 'integer'
  is_foreign_key: 1
  is_nullable: 0

itemnumber

  data_type: 'integer'
  is_nullable: 1

branchcode

  data_type: 'varchar'
  is_nullable: 1
  size: 10

status

  data_type: 'enum'
  default_value: 'staged'
  extra: {list => ["error","staged","imported","reverted","ignored"]}
  is_nullable: 0

marcxml

  data_type: 'longtext'
  is_nullable: 0

import_error

  data_type: 'mediumtext'
  is_nullable: 1

PRIMARY KEY

RELATIONS

import_record

Type: belongs_to

Related object: Koha::Schema::Result::ImportRecord

<<