Schema
Owner
ecological_db
Tablespace
(default)
Descriptions
Table des fichiers de mesures
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
fic_id |
serial |
|
nextval('tr_fichier_fic_fic_id_seq'::regclass) |
Identifiant automatique numérique du fichier |
|||
|
|
fic_nom |
varchar(120) |
|
|
|
Nom du fichier |
|
|
|
fic_url |
varchar(255) |
|
|
|
url d'accès au fichier |
Foreign Keys
There are no foreign keys for table tr_fichier_fic
Check Constraints
There are no check constraints for table tr_fichier_fic
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
fic_nom, fic_url |
|
Le couple nom / url d'un fichier doit être unique |
||
btree |
|
fic_id |
|
Triggers
There are no triggers for table tr_fichier_fic
Rules
There are no rules for table tr_fichier_fic
Policies
There are no policies for table tr_fichier_fic
Referenced
Table | Schema | Foreign Key | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
mzon_fic_id |
fic_id |
No Action |
No Action |
|
Immediate |
une mesure peut être rattachée à O ou 1 fichier |
||||
rgp_fic_id |
fic_id |
No Action |
No Action |
|
Immediate |
un regroupement peut être rattaché à O ou 1 fichier |
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.tr_fichier_fic (
fic_id SERIAL,
fic_nom VARCHAR(120) NOT NULL,
fic_url VARCHAR(255) NOT NULL,
CONSTRAINT c_uni_nom_url_fic UNIQUE(fic_nom, fic_url),
CONSTRAINT tr_fichier_fic_pkey PRIMARY KEY(fic_id)
) ;
COMMENT ON TABLE public.tr_fichier_fic
IS 'Table des fichiers de mesures';
COMMENT ON COLUMN public.tr_fichier_fic.fic_id
IS 'Identifiant automatique numérique du fichier';
COMMENT ON COLUMN public.tr_fichier_fic.fic_nom
IS 'Nom du fichier';
COMMENT ON COLUMN public.tr_fichier_fic.fic_url
IS 'url d''accès au fichier';
COMMENT ON CONSTRAINT c_uni_nom_url_fic ON public.tr_fichier_fic
IS 'Le couple nom / url d''un fichier doit être unique';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) |