db_venik
Previous topic Chapter index Next topic

Table: relation_peup_groupe_lieu

 

 

Schema

public

 

Owner

albenard

 

Tablespace

(default)

 

Descriptions

There is no description for table relation_peup_groupe_lieu

 

Columns

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

idlieu

integer

 

 

 

 

idgroupe_peuplement

integer

 

 

 

 

 

Foreign Keys

Name

Columns

FK Table

FK Columns

Delete Action

Update Action

Deferrable

Check Time

Description

fk_relation_peup_groupe_lieu_gro

idgroupe_peuplement

public.groupe_peup_lieu

idgroupe_peuplement

No Action

No Action

 

Immediate

 

relation_lieu

idlieu

public.lieu

idlieu

Restrict

Restrict

 

Immediate

 

 

Check Constraints

There are no check constraints for table relation_peup_groupe_lieu

 

Indices

Name

Type

Function

Columns

Primary Key

Unique

Description

pk_relation_peup_groupe_lieu

btree

 

idlieu, idgroupe_peuplement

 

 

Triggers

There are no triggers for table relation_peup_groupe_lieu

 

Rules

There are no rules for table relation_peup_groupe_lieu

 

Policies

There are no policies for table relation_peup_groupe_lieu

 

Referenced

There are no tables referenced by table relation_peup_groupe_lieu

 

Properties

Property

Value

Inherited From

 

Rows

-1

Pages

0

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.relation_peup_groupe_lieu (
 idlieu INTEGER NOT NULL,
 idgroupe_peuplement INTEGER NOT NULL,
 CONSTRAINT pk_relation_peup_groupe_lieu PRIMARY KEY(idlieu, idgroupe_peuplement),
 CONSTRAINT fk_relation_peup_groupe_lieu_gro FOREIGN KEY (idgroupe_peuplement)
   REFERENCES public.groupe_peup_lieu(idgroupe_peuplement)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE
,
 CONSTRAINT relation_lieu FOREIGN KEY (idlieu)
   REFERENCES public.lieu(idlieu)
   ON DELETE RESTRICT
   ON UPDATE RESTRICT
   NOT DEFERRABLE

) ;

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com)
Previous topic Chapter index Next topic