<<

NAME

Koha::Schema::Result::ExportFormat - Used for CSV export

TABLE: export_format

ACCESSORS

export_format_id

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

profile

  data_type: 'varchar'
  is_nullable: 0
  size: 255

description

  data_type: 'longtext'
  is_nullable: 0

content

  data_type: 'longtext'
  is_nullable: 0

csv_separator

  data_type: 'varchar'
  default_value: ','
  is_nullable: 0
  size: 2

field_separator

  data_type: 'varchar'
  is_nullable: 1
  size: 2

subfield_separator

  data_type: 'varchar'
  is_nullable: 1
  size: 2

encoding

  data_type: 'varchar'
  default_value: 'utf8'
  is_nullable: 0
  size: 255

type

  data_type: 'varchar'
  default_value: 'marc'
  is_nullable: 1
  size: 255

used_for

  data_type: 'varchar'
  default_value: 'export_records'
  is_nullable: 1
  size: 255

staff_only

  data_type: 'tinyint'
  default_value: 0
  is_nullable: 0

PRIMARY KEY

<<