config.i18n_core

Cascading Deletes: Deleting rows from this table will cascade to: config.i18n_locale.

Deferrable Constraints: The following FK constraints are deferrable — they are checked at transaction end, not statement end: i18n_core_translation_fkey.

Columns

Column Type Nullable Default Notes

id PK

bigint

No

nextval('config.i18n_core_id_seq'::regclass)

fq_field

text

No

identity_value

text

No

translation FK

text

No

config.i18n_locale(code)

string

text

No

Primary Key

(id)

Foreign Keys

Column(s) References On Delete On Update Deferrable Constraint

translation

config.i18n_locale(code)

CASCADE

CASCADE

DEFERRED

i18n_core_translation_fkey

Indexes

Index Method Definition

i18n_core_pkey PK

btree

CREATE UNIQUE INDEX i18n_core_pkey ON config.i18n_core USING btree (id)

i18n_identity UNIQUE

btree

CREATE UNIQUE INDEX i18n_identity ON config.i18n_core USING btree (fq_field, identity_value, translation)