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

Table: tj_role_parent_rol_rol_rolp

 

 

Schema

application

 

Owner

pgd

 

Tablespace

(default)

 

Descriptions

Table associant un rôle parent à un rôle enfant.

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

rolp_role_parent_id

integer

 

 

 

Identifiant (postgres) du rôle parent.

rolp_role_enfant_id

integer

 

 

 

Identifiant (postgres) du rôle enfant.

 

Foreign Keys

Name

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

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.

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.

 

Check Constraints

There are no check constraints for table tj_role_parent_rol_rol_rolp

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

c_pk_tj_role_parent_rol_rol_rolp

btree

 

rolp_role_parent_id, rolp_role_enfant_id

 

x_btr_role_enfant_id_rolp

btree

 

rolp_role_enfant_id

 

 

Index sur le rattachement à un rôle enfant afin d'optimiser le temps des requètes

x_btr_role_parent_id_rolp

btree

 

rolp_role_parent_id

 

 

Index sur le rattachement à un rôle parent afin d'optimiser le temps des requètes

 

Triggers

There are no triggers for table tj_role_parent_rol_rol_rolp

 

Rules

There are no rules for table tj_role_parent_rol_rol_rolp

 

Policies

There are no policies for table tj_role_parent_rol_rol_rolp

 

Referenced

There are no tables referenced by table tj_role_parent_rol_rol_rolp

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE application.tj_role_parent_rol_rol_rolp (
 rolp_role_parent_id INTEGER NOT NULL,
 rolp_role_enfant_id INTEGER NOT NULL,
 CONSTRAINT c_pk_tj_role_parent_rol_rol_rolp PRIMARY KEY(rolp_role_parent_id, rolp_role_enfant_id),
 CONSTRAINT c_fk_role_enfant_rolp FOREIGN KEY (rolp_role_enfant_id)
   REFERENCES application.t_role_rol(rol_id)
   ON DELETE CASCADE
   ON UPDATE NO ACTION
   NOT DEFERRABLE
,
 CONSTRAINT c_fk_role_parent_rolp FOREIGN KEY (rolp_role_parent_id)
   REFERENCES application.t_role_rol(rol_id)
   ON DELETE CASCADE
   ON UPDATE NO ACTION
   NOT DEFERRABLE

) ;

COMMENT ON TABLE application.tj_role_parent_rol_rol_rolp
IS 'Table associant un rôle parent à un rôle enfant.';

COMMENT ON COLUMN application.tj_role_parent_rol_rol_rolp.rolp_role_parent_id
IS 'Identifiant (postgres) du rôle parent.';

COMMENT ON COLUMN application.tj_role_parent_rol_rol_rolp.rolp_role_enfant_id
IS 'Identifiant (postgres) du rôle enfant.';

COMMENT ON CONSTRAINT c_fk_role_enfant_rolp ON application.tj_role_parent_rol_rol_rolp
IS 'Association d''un rôle enfant.';

COMMENT ON CONSTRAINT c_fk_role_parent_rolp ON application.tj_role_parent_rol_rol_rolp
IS 'Association d''un rôle parent.';

CREATE INDEX x_btr_role_enfant_id_rolp ON application.tj_role_parent_rol_rol_rolp
 USING btree (rolp_role_enfant_id);

COMMENT ON INDEX application.x_btr_role_enfant_id_rolp
IS 'Index sur le rattachement à un rôle enfant afin d''optimiser le temps des requètes';

CREATE INDEX x_btr_role_parent_id_rolp ON application.tj_role_parent_rol_rol_rolp
 USING btree (rolp_role_parent_id);

COMMENT ON INDEX application.x_btr_role_parent_id_rolp
IS 'Index sur le rattachement à un rôle parent afin d''optimiser le temps des requètes';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23
Previous topic Chapter index Next topic