Schema
Owner
albenard
Tablespace
(default)
Descriptions
Avril 2008. creation de idlc_pos_balise puis remplissage a partir de balise(varchar) puis suppression de balise.
Columns
PK | FK | Name | Data type | Not null | Unique | Inherited | Default | Description |
---|---|---|---|---|---|---|---|---|
idgeno |
integer |
|
|
|
||||
|
idlc_orientation |
integer |
|
|
|
|
|
|
|
|
abscisse |
numeric |
|
|
|
|
|
|
|
ordonnee |
numeric |
|
|
|
|
|
|
|
gps_latitude |
numeric |
|
|
|
|
|
|
|
gps_longitude |
numeric |
|
|
|
|
|
|
|
commentaire |
text |
|
|
|
|
|
|
|
unite_xy |
varchar(50) |
|
|
|
|
plant ou metre |
|
|
recup_nom_geno |
varchar(50) |
|
|
|
|
|
|
idlc_pos_balise |
integer |
|
|
|
|
|
|
|
|
nom_repetition |
varchar(128) |
|
|
|
|
oct 2008. Ajout a partir de position_ortet_dispo_geno |
|
|
nom_bloc |
varchar(128) |
|
|
|
|
oct 2008. Ajout a partir de position_ortet_dispo_geno |
Foreign Keys
Name | Columns | FK Table | FK Columns | Delete Action | Update Action | Deferrable | Check Time | Description |
---|---|---|---|---|---|---|---|---|
idgeno |
idgeno |
No Action |
No Action |
|
Immediate |
|
||
idlc_orientation |
id_lc |
No Action |
No Action |
|
Immediate |
|
||
idlc_pos_balise |
id_lc |
Restrict |
Restrict |
|
Immediate |
|
Check Constraints
There are no check constraints for table position_ortet_peup_dispo_geno
Indices
Name | Type | Function | Columns | Primary Key | Unique | Description |
---|---|---|---|---|---|---|
btree |
|
idgeno |
|
Triggers
There are no triggers for table position_ortet_peup_dispo_geno
Rules
There are no rules for table position_ortet_peup_dispo_geno
Policies
There are no policies for table position_ortet_peup_dispo_geno
Referenced
There are no tables referenced by table position_ortet_peup_dispo_geno
Properties
Property | Value |
---|---|
Inherited From |
|
Rows |
4516 |
Pages |
46 |
System |
|
Temporary |
|
With OID |
Definition
CREATE TABLE public.position_ortet_peup_dispo_geno (
idgeno INTEGER NOT NULL,
idlc_orientation INTEGER,
abscisse NUMERIC,
ordonnee NUMERIC,
gps_latitude NUMERIC,
gps_longitude NUMERIC,
commentaire TEXT,
unite_xy VARCHAR(50),
recup_nom_geno VARCHAR(50),
idlc_pos_balise INTEGER,
nom_repetition VARCHAR(128),
nom_bloc VARCHAR(128),
CONSTRAINT position_ortet_peup_dispo_geno_pkey PRIMARY KEY(idgeno),
FOREIGN KEY (idgeno)
REFERENCES public.clone_geno(idgeno)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT fk_orientation FOREIGN KEY (idlc_orientation)
REFERENCES public.donnees_liste_classique(id_lc)
ON DELETE NO ACTION
ON UPDATE NO ACTION
NOT DEFERRABLE,
CONSTRAINT fk_pos_balise FOREIGN KEY (idlc_pos_balise)
REFERENCES public.donnees_liste_classique(id_lc)
ON DELETE RESTRICT
ON UPDATE RESTRICT
NOT DEFERRABLE
) ;
COMMENT ON TABLE public.position_ortet_peup_dispo_geno
IS 'Avril 2008. creation de idlc_pos_balise puis remplissage a partir de balise(varchar) puis suppression de balise.';
COMMENT ON COLUMN public.position_ortet_peup_dispo_geno.unite_xy
IS 'plant ou metre';
COMMENT ON COLUMN public.position_ortet_peup_dispo_geno.nom_repetition
IS 'oct 2008. Ajout a partir de position_ortet_dispo_geno';
COMMENT ON COLUMN public.position_ortet_peup_dispo_geno.nom_bloc
IS 'oct 2008. Ajout a partir de position_ortet_dispo_geno';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) |