<<

NAME

Koha::Schema::Result::AdditionalContentsLocalization

TABLE: additional_contents_localizations

ACCESSORS

id

  data_type: 'integer'
  extra: {unsigned => 1}
  is_auto_increment: 1
  is_nullable: 0

unique identifier for the additional content

additional_content_id

  data_type: 'integer'
  extra: {unsigned => 1}
  is_foreign_key: 1
  is_nullable: 0

link to the additional content

title

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

title of the additional content

content

  data_type: 'mediumtext'
  is_nullable: 0

the body of your additional content

lang

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

lang

updated_on

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

last modification

PRIMARY KEY

UNIQUE CONSTRAINTS

additional_contents_localizations_uniq

RELATIONS

additional_content

Type: belongs_to

Related object: Koha::Schema::Result::AdditionalContent

koha_object_class

  Koha Object class

koha_objects_class

  Koha Objects class

<<