Schema
Owner
postgres
Tablespace
(default)
Descriptions
Table displaying the environment in which traits have been measured (i.e. metadata groups) / Table des environnements de mesures de traits (groupes de métadonnées)
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
met_id |
serial |
|
nextval('t_set_metadata_measure_met_met_id_seq'::regclass) |
Automatic ID of the measure metadata / Identifiant automatique des métadonnées de la mesure |
|||
|
met_pub_id |
integer |
|
|
|
Automatic ID of the publication / Identifiant automatique de la publication |
||
|
|
met_definition |
varchar(128) |
|
|
Metadata set definition / Définition de l'ensemble des conditions d'aquisition de la mesure |
Foreign Keys
Name | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
met_pub_id |
pub_id |
No Action |
No Action |
|
Immediate |
A measure environment is related to only one publication / Un environnement de mesure est associé à une et une seule publication |
Check Constraints
There are no check constraints for table t_set_metadata_measure_met
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
met_definition |
|
met_definition must be unique / le champ met_definition ne peut contenir de doublons |
||
btree |
|
met_id |
|
|||
btree |
|
met_pub_id |
|
|
Foreign key index linking a set of metadata to a publication /Index sur la clé étrangère rattachant un ensemble de métadonnées à une publication |
Triggers
There are no triggers for table t_set_metadata_measure_met
Rules
There are no rules for table t_set_metadata_measure_met
Policies
There are no policies for table t_set_metadata_measure_met
Referenced
Table | Schema | Foreign Key | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
mea_met_id |
met_id |
No Action |
No Action |
|
Immediate |
A measure is related to only one metadata set / Une mesure est associée à un et un seul groupe de métadonnées |
||||
mch_met_id |
met_id |
No Action |
No Action |
|
Immediate |
Characteristic measure is related to only one metadata set / La mesure de caractéristique est associée à un et un seul groupe de métadonnées |
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.t_set_metadata_measure_met (
met_id SERIAL,
met_pub_id INTEGER NOT NULL,
met_definition VARCHAR(128) NOT NULL,
CONSTRAINT c_uni_definition_met UNIQUE(met_definition),
CONSTRAINT t_set_metadata_measure_met_pkey PRIMARY KEY(met_id),
CONSTRAINT c_fk_pub_met FOREIGN KEY (met_pub_id)
REFERENCES public.t_publi_pub(pub_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
)
WITH (oids = false);
COMMENT ON TABLE public.t_set_metadata_measure_met
IS 'Table displaying the environment in which traits have been measured (i.e. metadata groups) / Table des environnements de mesures de traits (groupes de métadonnées)';
COMMENT ON COLUMN public.t_set_metadata_measure_met.met_id
IS 'Automatic ID of the measure metadata / Identifiant automatique des métadonnées de la mesure';
COMMENT ON COLUMN public.t_set_metadata_measure_met.met_pub_id
IS 'Automatic ID of the publication / Identifiant automatique de la publication';
COMMENT ON COLUMN public.t_set_metadata_measure_met.met_definition
IS 'Metadata set definition / Définition de l''ensemble des conditions d''aquisition de la mesure';
COMMENT ON CONSTRAINT c_fk_pub_met ON public.t_set_metadata_measure_met
IS 'A measure environment is related to only one publication / Un environnement de mesure est associé à une et une seule publication';
COMMENT ON CONSTRAINT c_uni_definition_met ON public.t_set_metadata_measure_met
IS 'met_definition must be unique / le champ met_definition ne peut contenir de doublons';
CREATE INDEX x_btr_pub_met ON public.t_set_metadata_measure_met
USING btree (met_pub_id);
COMMENT ON INDEX public.x_btr_pub_met
IS 'Foreign key index linking a set of metadata to a publication /Index sur la clé étrangère rattachant un ensemble de métadonnées à une publication';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 19/06/2019 10:17 |