Schema
Owner
formulaire_access
Tablespace
(default)
Descriptions
Table contenant les compétences.
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
comp_id |
serial |
|
nextval('t_competence_comp_comp_id_seq'::regclass) |
Identifiant de la compétence. |
|||
|
|
comp_libelle |
varchar(255) |
|
|
Libellé de" la compétence. |
Foreign Keys
There are no foreign keys for table t_competence_comp
Check Constraints
There are no check constraints for table t_competence_comp
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
comp_id |
|
|||
btree |
|
comp_libelle |
|
Unicité sur le libellé de la compétence. |
Triggers
There are no triggers for table t_competence_comp
Rules
There are no rules for table t_competence_comp
Policies
There are no policies for table t_competence_comp
Referenced
Table | Schema | Foreign Key | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
acomp_comp_id |
comp_id |
No Action |
No Action |
|
Immediate |
Association d'une compétence. |
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.t_competence_comp (
comp_id SERIAL,
comp_libelle VARCHAR(255) NOT NULL,
CONSTRAINT c_pk_t_competence_comp PRIMARY KEY(comp_id),
CONSTRAINT c_uni_libelle_comp UNIQUE(comp_libelle)
)
WITH (oids = false);
COMMENT ON TABLE public.t_competence_comp
IS 'Table contenant les compétences.';
COMMENT ON COLUMN public.t_competence_comp.comp_id
IS 'Identifiant de la compétence.';
COMMENT ON COLUMN public.t_competence_comp.comp_libelle
IS 'Libellé de" la compétence.';
COMMENT ON CONSTRAINT c_uni_libelle_comp ON public.t_competence_comp
IS 'Unicité sur le libellé de la compétence.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |