Schema
Owner
ecological_db
Tablespace
(default)
Descriptions
Table contenant les différents rôles pouvant être affectés aux utilisateurs.
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
rol_id |
serial |
|
nextval('application.t_role_rol_rol_id_seq'::regclass) |
Identifant (postgres) du rôle. |
|||
|
|
rol_libelle |
varchar(25) |
|
|
Libellé du rôle. |
||
|
|
rol_description |
varchar(255) |
|
|
|
|
Descritpion du rôle. |
Foreign Keys
There are no foreign keys for table t_role_rol
Check Constraints
There are no check constraints for table t_role_rol
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
rol_id |
|
|||
btree |
|
rol_libelle |
|
Unicité sur le libellé du rôle. |
Triggers
There are no triggers for table t_role_rol
Rules
There are no rules for table t_role_rol
Policies
There are no policies for table t_role_rol
Referenced
Table | Schema | Foreign Key | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|---|---|
aperm_rol_id |
rol_id |
Cascade |
No Action |
|
Immediate |
Association d'un rôle à une permission. |
||||
arol_rol_id |
rol_id |
Cascade |
No Action |
|
Immediate |
Association d'un rôle à un compte utilisateur. |
||||
rolp_role_enfant_id |
rol_id |
Cascade |
No Action |
|
Immediate |
Association d'un rôle enfant. |
||||
rolp_role_parent_id |
rol_id |
Cascade |
No Action |
|
Immediate |
Association d'un rôle parent. |
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE application.t_role_rol (
rol_id SERIAL,
rol_libelle VARCHAR(25) NOT NULL,
rol_description VARCHAR(255),
CONSTRAINT c_pk_t_role_rol PRIMARY KEY(rol_id),
CONSTRAINT c_uni_libelle_rol UNIQUE(rol_libelle)
) ;
COMMENT ON TABLE application.t_role_rol
IS 'Table contenant les différents rôles pouvant être affectés aux utilisateurs.';
COMMENT ON COLUMN application.t_role_rol.rol_id
IS 'Identifant (postgres) du rôle.';
COMMENT ON COLUMN application.t_role_rol.rol_libelle
IS 'Libellé du rôle.';
COMMENT ON COLUMN application.t_role_rol.rol_description
IS 'Descritpion du rôle.';
COMMENT ON CONSTRAINT c_uni_libelle_rol ON application.t_role_rol
IS 'Unicité sur le libellé du rôle.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) |