Schema
Owner
postgres
Tablespace
(default)
Descriptions
There is no description for table tj_notateur_not
Fields
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
not_rfl_id |
integer |
|
|
|
Identifiant numérique automatique du relevé concerné par l'association |
|||
not_ope_id |
integer |
|
|
|
Identifiant numérique automatique de l'opérateur concerné par l'association |
|||
|
|
not_statut |
varchar(50) |
|
|
|
Indication du rôlede l'opérateur pour le relevé |
Foreign Keys
Name | Fields | FK Table | FK Fields | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
not_ope_id |
ope_id |
No Action |
No Action |
|
Immediate |
Le champ not_ope_id correspond obligatoirement à un opérateur existant |
||
not_rfl_id |
rfl_id |
No Action |
No Action |
|
Immediate |
Le champ not_rfl_id correspond obligatoirement à un relevé existant |
Check Constraints
There are no check constraints for table tj_notateur_not
Indices
Name | Type | Function | Fields | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
not_rfl_id, not_ope_id |
|
|||
btree |
|
not_ope_id |
|
|
Index de clé étrangère pour accélérer les mises à jour / suppression |
|
btree |
|
not_rfl_id |
|
|
Index de clé étrangère pour accélérer les mises à jour / suppression |
Triggers
There are no triggers for table tj_notateur_not
Rules
There are no rules for table tj_notateur_not
Policies
There are no policies for table tj_notateur_not
Referenced
There are no tables referenced by table tj_notateur_not
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
0 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.tj_notateur_not (
not_rfl_id INTEGER NOT NULL,
not_ope_id INTEGER NOT NULL,
not_statut VARCHAR(50) NOT NULL,
CONSTRAINT tj_notateur_not_pkey PRIMARY KEY(not_rfl_id, not_ope_id),
CONSTRAINT c_fk_ope_not FOREIGN KEY (not_ope_id)
REFERENCES public.tr_operateur_ope(ope_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT c_fk_rfl_not FOREIGN KEY (not_rfl_id)
REFERENCES public.t_relevefloristique_rfl(rfl_id)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
COMMENT ON COLUMN public.tj_notateur_not.not_rfl_id
IS 'Identifiant numérique automatique du relevé concerné par l''association';
COMMENT ON COLUMN public.tj_notateur_not.not_ope_id
IS 'Identifiant numérique automatique de l''opérateur concerné par l''association';
COMMENT ON COLUMN public.tj_notateur_not.not_statut
IS 'Indication du rôlede l''opérateur pour le relevé';
COMMENT ON CONSTRAINT c_fk_ope_not ON public.tj_notateur_not
IS 'Le champ not_ope_id correspond obligatoirement à un opérateur existant';
COMMENT ON CONSTRAINT c_fk_rfl_not ON public.tj_notateur_not
IS 'Le champ not_rfl_id correspond obligatoirement à un relevé existant';
CREATE INDEX x_btr_fkey_ope_not ON public.tj_notateur_not
USING btree (not_ope_id);
COMMENT ON INDEX public.x_btr_fkey_ope_not
IS 'Index de clé étrangère pour accélérer les mises à jour / suppression';
CREATE INDEX x_btr_fkey_rfl_not ON public.tj_notateur_not
USING btree (not_rfl_id);
COMMENT ON INDEX public.x_btr_fkey_rfl_not
IS 'Index de clé étrangère pour accélérer les mises à jour / suppression';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) |