pggeodb-preprod.nancy.inra.fr/db_pgd - db_pgd on pggeodb-preprod.nancy.inra.fr
Previous topic Chapter index Next topic

Table: t_role_rol

 

 

Schema

application

 

Owner

pgd

 

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.

 

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

c_pk_t_role_rol

btree

 

rol_id

 

c_uni_libelle_rol

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

tj_apermission_rol_perm_aperm

application

c_fk_rol_aperm

aperm_rol_id

application.t_role_rol

rol_id

Cascade

No Action

 

Immediate

Association d'un rôle à une permission.

tj_arole_usr_rol_arol

application

c_fk_rol_arol

arol_rol_id

application.t_role_rol

rol_id

Cascade

No Action

 

Immediate

Association d'un rôle à un compte utilisateur.

tj_role_parent_rol_rol_rolp

application

c_fk_role_enfant_rolp

rolp_role_enfant_id

application.t_role_rol

rol_id

Cascade

No Action

 

Immediate

Association d'un rôle enfant.

tj_role_parent_rol_rol_rolp

application

c_fk_role_parent_rolp

rolp_role_parent_id

application.t_role_rol

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,
 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 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) at 07/12/2018 13:23
Previous topic Chapter index Next topic