db_ecological_db
Previous topic Chapter index Next topic

Table: tr_protocole_prot

 

 

Schema

public

 

Owner

ecological_db

 

Tablespace

(default)

 

Descriptions

Table des protocoles référencés dans la base

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

prot_id

serial

 

nextval('tr_protocole_prot_prot_id_seq'::regclass)

Identifiant unique numérique du protocole

 

 

prot_nom

varchar(50)

 

 

Nom usuel unique du protocole

 

 

prot_description

varchar(255)

 

 

 

Description succincte du protocole

 

 

prot_url

varchar(255)

 

 

 

 

url d'accès au document protocole

 

Foreign Keys

There are no foreign keys for table tr_protocole_prot

 

Check Constraints

There are no check constraints for table tr_protocole_prot

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

c_uni_nom_prot

btree

 

prot_nom

 

Le nom du protocole doit être unique

tr_protocole_prot_pkey

btree

 

prot_id

 

 

Triggers

There are no triggers for table tr_protocole_prot

 

Rules

There are no rules for table tr_protocole_prot

 

Policies

There are no policies for table tr_protocole_prot

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

t_mesure_mzon

public

c_fk_prot_mzon

mzon_prot_id

public.tr_protocole_prot

prot_id

No Action

No Action

 

Immediate

une mesure peut être rattachée à O ou 1 protocole

t_regroupement_rgp

public

c_fk_prot_rgp

rgp_prot_id

public.tr_protocole_prot

prot_id

No Action

No Action

 

Immediate

un regroupement peut être rattaché à O ou 1 protocole

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.tr_protocole_prot (
 prot_id SERIAL,
 prot_nom VARCHAR(50) NOT NULL,
 prot_description VARCHAR(255) NOT NULL,
 prot_url VARCHAR(255),
 CONSTRAINT c_uni_nom_prot UNIQUE(prot_nom),
 CONSTRAINT tr_protocole_prot_pkey PRIMARY KEY(prot_id)
) ;

COMMENT ON TABLE public.tr_protocole_prot
IS 'Table  des protocoles référencés dans la base';

COMMENT ON COLUMN public.tr_protocole_prot.prot_id
IS 'Identifiant unique numérique du protocole';

COMMENT ON COLUMN public.tr_protocole_prot.prot_nom
IS 'Nom usuel unique du protocole';

COMMENT ON COLUMN public.tr_protocole_prot.prot_description
IS 'Description succincte du protocole';

COMMENT ON COLUMN public.tr_protocole_prot.prot_url
IS 'url d''accès au document protocole';

COMMENT ON CONSTRAINT c_uni_nom_prot ON public.tr_protocole_prot
IS 'Le nom du protocole doit être unique';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com)
Previous topic Chapter index Next topic