Schema
Owner
postgres
Tablespace
(default)
Descriptions
There is no description for table utilisateur_projet
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
id_user_projet |
serial |
|
nextval('utilisateur_projet_id_user_projet_seq'::regclass) |
|
|||
|
stk_user |
integer |
|
|
|
|
|
|
|
|
user_projet |
varchar |
|
|
|
|
|
Foreign Keys
Name | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
stk_user |
id_user |
No Action |
No Action |
|
Immediate |
|
Check Constraints
There are no check constraints for table utilisateur_projet
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
stk_user |
|
|
|
|
btree |
|
id_user_projet |
|
Triggers
There are no triggers for table utilisateur_projet
Rules
There are no rules for table utilisateur_projet
Policies
There are no policies for table utilisateur_projet
Referenced
There are no tables referenced by table utilisateur_projet
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
6 |
Pages |
1 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.utilisateur_projet (
id_user_projet SERIAL,
stk_user INTEGER,
user_projet VARCHAR,
CONSTRAINT pmk_user_proj PRIMARY KEY(id_user_projet),
CONSTRAINT stk_user_proj FOREIGN KEY (stk_user)
REFERENCES public.utilisateur(id_user)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
CREATE INDEX fki_stk_user_proj ON public.utilisateur_projet
USING btree (stk_user);
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |