Schema
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 |
---|---|---|---|---|---|---|---|---|
idgroupe_peuplement |
idgroupe_peuplement |
No Action |
No Action |
|
Immediate |
|
||
idlieu |
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 |
---|---|---|---|---|---|---|
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) |