db_venik
Previous topic Chapter index Next topic

Table: trace_out

 

 

Schema

public

 

Owner

albenard

 

Tablespace

(default)

 

Descriptions

There is no description for table trace_out

 

Columns

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

idtrace

serial

 

nextval('trace_out_idtrace_seq'::regclass)

 

 

 

nom_table

varchar(50)

 

 

 

nom de la table principale

 

 

ident

integer

 

 

 

identifiant dans la table specifie

 

 

nom_complet

varchar(150)

 

 

 

nom complet correspondant a l identifiant. ce nom construit a partir de plusieurs champs

 

 

iduser_creer

integer

 

 

 

 

iduser a la creation ou modification.Pas de lien avec la table utilisateur (afin d eviter un blocage eventuel enn cas de suppression d un user)

 

 

iduser_supp

integer

 

 

 

 

iduser de la suppression. Pas de lien avec la table utilisateur (afin d eviter un blocage eventuel en cas de suppression d un user)

 

 

commentaire

text

 

 

 

 

 

 

 

date_creation

date

 

 

 

 

date de creation ou modification

 

 

date_supp

date

 

 

 

 

date de suppression de l enregistrement

 

Foreign Keys

There are no foreign keys for table trace_out

 

Check Constraints

There are no check constraints for table trace_out

 

Indices

Name

Type

Function

Columns

Primary Key

Unique

Description

trace_out_pkey

btree

 

idtrace

 

 

Triggers

There are no triggers for table trace_out

 

Rules

There are no rules for table trace_out

 

Policies

There are no policies for table trace_out

 

Referenced

There are no tables referenced by table trace_out

 

Properties

Property

Value

Inherited From

 

Rows

156

Pages

4

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.trace_out (
 idtrace SERIAL,
 nom_table VARCHAR(50) NOT NULL,
 ident INTEGER NOT NULL,
 nom_complet VARCHAR(150) NOT NULL,
 iduser_creer INTEGER,
 iduser_supp INTEGER,
 commentaire TEXT,
 date_creation DATE,
 date_supp DATE,
 CONSTRAINT trace_out_pkey PRIMARY KEY(idtrace)
) ;

COMMENT ON COLUMN public.trace_out.nom_table
IS 'nom de la table principale';

COMMENT ON COLUMN public.trace_out.ident
IS 'identifiant dans la table specifie';

COMMENT ON COLUMN public.trace_out.nom_complet
IS 'nom complet correspondant a l identifiant. ce nom construit a partir de plusieurs champs';

COMMENT ON COLUMN public.trace_out.iduser_creer
IS 'iduser a la creation ou modification.Pas de lien avec la table utilisateur (afin d eviter un blocage eventuel enn cas de suppression d un user)';

COMMENT ON COLUMN public.trace_out.iduser_supp
IS 'iduser de la suppression. Pas de lien avec la table utilisateur (afin d eviter un blocage eventuel en cas de suppression d un user)';

COMMENT ON COLUMN public.trace_out.date_creation
IS 'date de creation ou modification';

COMMENT ON COLUMN public.trace_out.date_supp
IS 'date de suppression de l enregistrement';

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