Schema
Owner
ofb
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 |
---|---|---|---|---|---|---|---|---|
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. |
Check Constraints
There are no check constraints for table tj_role_parent_rol_rol_rolp
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
rolp_role_parent_id, rolp_role_enfant_id |
|
|||
btree |
|
rolp_role_enfant_id |
|
|
Index sur le rattachement à un rôle enfant afin d'optimiser le temps des requètes |
|
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) |