<<

NAME

Koha::Schema::Result::ImportBatchProfile

TABLE: import_batch_profiles

ACCESSORS

id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

unique identifier and primary key

name

  data_type: 'varchar'
  is_nullable: 0
  size: 100

name of this profile

matcher_id

  data_type: 'integer'
  is_nullable: 1

the id of the match rule used (matchpoints.matcher_id)

template_id

  data_type: 'integer'
  is_nullable: 1

the id of the marc modification template

overlay_action

  data_type: 'varchar'
  is_nullable: 1
  size: 50

how to handle duplicate records

nomatch_action

  data_type: 'varchar'
  is_nullable: 1
  size: 50

how to handle records where no match is found

item_action

  data_type: 'varchar'
  is_nullable: 1
  size: 50

what to do with item records

parse_items

  data_type: 'tinyint'
  is_nullable: 1

should items be parsed

record_type

  data_type: 'varchar'
  is_nullable: 1
  size: 50

type of record in the batch

encoding

  data_type: 'varchar'
  is_nullable: 1
  size: 50

file encoding

format

  data_type: 'varchar'
  is_nullable: 1
  size: 50

marc format

comments

  data_type: 'longtext'
  is_nullable: 1

any comments added when the file was uploaded

PRIMARY KEY

UNIQUE CONSTRAINTS

u_import_batch_profiles__name

RELATIONS

import_batches

Type: has_many

Related object: Koha::Schema::Result::ImportBatch

koha_object_class

  Koha Object class

koha_objects_class

  Koha Objects class

<<