db_biljou_carto on db.silva.inrae.fr
Previous topic Chapter index Next topic

Table: tr_fichier_fic

 

 

Schema

public

 

Owner

biljoucarto

 

Tablespace

(default)

 

Descriptions

Table des fichiers

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

fic_id

serial

 

nextval('tr_fichier_fic_fic_id_seq'::regclass)

Identifiant

 

 

fic_nom

varchar(60)

 

 

 

 

Nom du fichier

 

 

fic_chemin

varchar(255)

 

 

 

 

Chemin du fichier dans le système de fichier

 

 

fic_date_traitement

date

 

 

 

 

Date de dernier traitement du 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

c_uni_fic

btree

 

fic_nom, fic_chemin

 

 

tr_fichier_fic_pkey

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

t_carte_indicateur_caind

public

t_carte_indicateur_caind_fic_id_fkey

caind_fic_id

public.tr_fichier_fic

fic_id

No Action

No Action

 

Immediate

 

t_carte_parametre_simulation_capars

public

t_carte_parametre_simulation_capars_fic_id_fkey

fic_id

public.tr_fichier_fic

fic_id

No Action

No Action

 

Immediate

 

t_carte_statistique_parametre_simulation_caspars

public

t_carte_statistique_parametre_simulation_caspars_fic_id_fkey

fic_id

public.tr_fichier_fic

fic_id

No Action

No Action

 

Immediate

 

 

Properties

Property

Value

Inherited From

 

Rows

240

Pages

4

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.tr_fichier_fic (
 fic_id SERIAL,
 fic_nom VARCHAR(60),
 fic_chemin VARCHAR(255),
 fic_date_traitement DATE,
 CONSTRAINT c_uni_fic UNIQUE(fic_nom, fic_chemin),
 CONSTRAINT tr_fichier_fic_pkey PRIMARY KEY(fic_id)
) ;

COMMENT ON TABLE public.tr_fichier_fic
IS 'Table des fichiers';

COMMENT ON COLUMN public.tr_fichier_fic.fic_id
IS 'Identifiant';

COMMENT ON COLUMN public.tr_fichier_fic.fic_nom
IS 'Nom du fichier';

COMMENT ON COLUMN public.tr_fichier_fic.fic_chemin
IS 'Chemin du fichier dans le système de fichier';

COMMENT ON COLUMN public.tr_fichier_fic.fic_date_traitement
IS 'Date de dernier traitement du fichier';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23
Previous topic Chapter index Next topic