Schema
Owner
albenard
Tablespace
(default)
Descriptions
There is no description for table droit_acces_utilisateur_module
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
iduser |
integer |
|
|
|
|
|||
|
iddroit |
integer |
|
|
|
|
||
idmodule |
integer |
|
|
|
|
Foreign Keys
Name | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
iddroit |
iddroit |
No Action |
No Action |
|
Immediate |
|
||
idmodule |
idmodule |
No Action |
No Action |
|
Immediate |
|
||
iduser |
iduser |
No Action |
No Action |
|
Immediate |
|
Check Constraints
There are no check constraints for table droit_acces_utilisateur_module
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
iduser, idmodule |
|
Triggers
There are no triggers for table droit_acces_utilisateur_module
Rules
There are no rules for table droit_acces_utilisateur_module
Policies
There are no policies for table droit_acces_utilisateur_module
Referenced
There are no tables referenced by table droit_acces_utilisateur_module
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
124 |
Pages |
1 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.droit_acces_utilisateur_module (
iduser INTEGER NOT NULL,
iddroit INTEGER NOT NULL,
idmodule INTEGER NOT NULL,
CONSTRAINT pk_droit_acces_utilisateur_modul PRIMARY KEY(iduser, idmodule),
CONSTRAINT fk_droit_acces_utilisateur_modu1 FOREIGN KEY (iddroit)
REFERENCES public.droit(iddroit)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT fk_droit_acces_utilisateur_modu2 FOREIGN KEY (idmodule)
REFERENCES public.module(idmodule)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT fk_droit_acces_utilisateur_modul FOREIGN KEY (iduser)
REFERENCES public.utilisateur(iduser)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) |