<<

NAME

Koha::Schema::Result::Deletedbiblio

TABLE: deletedbiblio

ACCESSORS

biblionumber

  data_type: 'integer'
  is_auto_increment: 1
  is_nullable: 0

unique identifier assigned to each bibliographic record

frameworkcode

  data_type: 'varchar'
  default_value: (empty string)
  is_nullable: 0
  size: 4

foriegn key from the biblio_framework table to identify which framework was used in cataloging this record

author

  data_type: 'longtext'
  is_nullable: 1

statement of responsibility from MARC record (100$a in MARC21)

title

  data_type: 'longtext'
  is_nullable: 1

title (without the subtitle) from the MARC record (245$a in MARC21)

medium

  data_type: 'longtext'
  is_nullable: 1

medium from the MARC record (245$h in MARC21)

subtitle

  data_type: 'longtext'
  is_nullable: 1

remainder of the title from the MARC record (245$b in MARC21)

part_number

  data_type: 'longtext'
  is_nullable: 1

part number from the MARC record (245$n in MARC21)

part_name

  data_type: 'longtext'
  is_nullable: 1

part name from the MARC record (245$p in MARC21)

unititle

  data_type: 'longtext'
  is_nullable: 1

uniform title (without the subtitle) from the MARC record (240$a in MARC21)

notes

  data_type: 'longtext'
  is_nullable: 1

values from the general notes field in the MARC record (500$a in MARC21) split by bar (|)

serial

  data_type: 'tinyint'
  is_nullable: 1

Boolean indicating whether biblio is for a serial

seriestitle

  data_type: 'longtext'
  is_nullable: 1

copyrightdate

  data_type: 'smallint'
  is_nullable: 1

publication or copyright date from the MARC record

timestamp

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

date and time this record was last touched

datecreated

  data_type: 'date'
  datetime_undef_if_invalid: 1
  is_nullable: 0

the date this record was added to Koha

abstract

  data_type: 'longtext'
  is_nullable: 1

summary from the MARC record (520$a in MARC21)

PRIMARY KEY

RELATIONS

deletedbiblio_metadatas

Type: has_many

Related object: Koha::Schema::Result::DeletedbiblioMetadata

<<