Schema
Owner
formulaire_access
Tablespace
(default)
Descriptions
Table contenant les projets.
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
pro_id |
serial |
|
nextval('t_projet_pro_pro_id_seq'::regclass) |
Identifiant du projet. |
|||
|
|
pro_nom |
varchar(255) |
|
|
Nom du projet. |
Foreign Keys
There are no foreign keys for table t_projet_pro
Check Constraints
There are no check constraints for table t_projet_pro
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
pro_id |
|
|||
btree |
|
pro_nom |
|
Unicité sur le nom du projet. |
Triggers
There are no triggers for table t_projet_pro
Rules
There are no rules for table t_projet_pro
Policies
There are no policies for table t_projet_pro
Referenced
Table | Schema | Foreign Key | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
rol_pro_id |
pro_id |
No Action |
No Action |
|
Immediate |
Association d'un projet à un rôle. |
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
|
Definition
CREATE TABLE public.t_projet_pro (
pro_id SERIAL,
pro_nom VARCHAR(255) NOT NULL,
CONSTRAINT c_pk_t_projet_pro PRIMARY KEY(pro_id),
CONSTRAINT c_uni_nom_pro UNIQUE(pro_nom)
)
WITH (oids = false);
COMMENT ON TABLE public.t_projet_pro
IS 'Table contenant les projets.';
COMMENT ON COLUMN public.t_projet_pro.pro_id
IS 'Identifiant du projet.';
COMMENT ON COLUMN public.t_projet_pro.pro_nom
IS 'Nom du projet.';
COMMENT ON CONSTRAINT c_uni_nom_pro ON public.t_projet_pro
IS 'Unicité sur le nom du projet.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |