Schema
Owner
albenard
Tablespace
(default)
Descriptions
There is no description for table suivi_lieu
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
|
idlieu |
integer |
|
|
|
|
||
|
idlc_type_suivi |
integer |
|
|
|
|
||
|
|
annee |
integer |
|
|
|
|
2 juin 2008. non obligatoire dans la base. A rendre obligatoire dans l application |
|
|
mois |
integer |
|
|
|
|
|
|
|
commentaire |
text |
|
|
|
|
|
|
|
num_suivi |
integer |
|
|
|
|
|
|
idsuivi |
serial |
|
nextval('public.suivi_lieu_idsuivi_seq'::text::regclass) |
|
Foreign Keys
Name | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
idlieu |
idlieu |
No Action |
No Action |
|
Immediate |
|
||
idlc_type_suivi |
id_lc |
No Action |
No Action |
|
Immediate |
|
Check Constraints
There are no check constraints for table suivi_lieu
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
idsuivi |
|
|||
btree |
|
idlieu, num_suivi |
|
|
Triggers
There are no triggers for table suivi_lieu
Rules
There are no rules for table suivi_lieu
Policies
There are no policies for table suivi_lieu
Referenced
There are no tables referenced by table suivi_lieu
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
-1 |
Pages |
0 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.suivi_lieu (
idlieu INTEGER NOT NULL,
idlc_type_suivi INTEGER NOT NULL,
annee INTEGER,
mois INTEGER,
commentaire TEXT,
num_suivi INTEGER NOT NULL,
idsuivi SERIAL,
CONSTRAINT idsuivi PRIMARY KEY(idsuivi),
CONSTRAINT u_lieu_num_suivi UNIQUE(idlieu, num_suivi),
CONSTRAINT fk_suivi_lieu_lieu FOREIGN KEY (idlieu)
REFERENCES public.lieu(idlieu)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT fk_type_suivi FOREIGN KEY (idlc_type_suivi)
REFERENCES public.donnees_liste_classique(id_lc)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE
) ;
COMMENT ON COLUMN public.suivi_lieu.annee
IS '2 juin 2008. non obligatoire dans la base. A rendre obligatoire dans l application';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) |