pggeodb.nancy.inrae.fr/db_arboretum
Previous topic Chapter index Next topic

Table: t_formulaire_odk

 

 

Schema

odk

 

Owner

albenard

 

Tablespace

(default)

 

Descriptions

Table contenant les informations des formulaires déjà traités (données intégrées en base)

 

Columns

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

odk_id

serial

 

nextval('odk.t_formulaire_odk_odk_id_seq'::regclass)

Identifiant automatique numérique

 

 

odk_uuid

varchar(64)

 

 

Identifiant du formulaire issu de la plateforme ODK

 

 

odk_titre_formulaire

varchar(128)

 

 

 

Nom usuel du formulaire

 

 

odk_date_traitement

date

 

 

 

Date d'intégration desq données du formulaire en base

 

Foreign Keys

There are no foreign keys for table t_formulaire_odk

 

Check Constraints

There are no check constraints for table t_formulaire_odk

 

Indices

Name

Type

Function

Columns

Primary Key

Unique

Description

t_formulaire_odk_odk_uuid_key

btree

 

odk_uuid

 

 

t_formulaire_odk_pkey

btree

 

odk_id

 

 

Triggers

There are no triggers for table t_formulaire_odk

 

Rules

There are no rules for table t_formulaire_odk

 

Policies

There are no policies for table t_formulaire_odk

 

Referenced

There are no tables referenced by table t_formulaire_odk

 

Properties

Property

Value

Inherited From

 

Rows

156

Pages

3

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE odk.t_formulaire_odk (
 odk_id SERIAL,
 odk_uuid VARCHAR(64) NOT NULL,
 odk_titre_formulaire VARCHAR(128) NOT NULL,
 odk_date_traitement DATE NOT NULL,
 CONSTRAINT t_formulaire_odk_odk_uuid_key UNIQUE(odk_uuid),
 CONSTRAINT t_formulaire_odk_pkey PRIMARY KEY(odk_id)
) ;

COMMENT ON TABLE odk.t_formulaire_odk
IS 'Table contenant les informations des formulaires déjà traités (données intégrées en base)';

COMMENT ON COLUMN odk.t_formulaire_odk.odk_id
IS 'Identifiant automatique numérique';

COMMENT ON COLUMN odk.t_formulaire_odk.odk_uuid
IS 'Identifiant du formulaire issu de la plateforme ODK';

COMMENT ON COLUMN odk.t_formulaire_odk.odk_titre_formulaire
IS 'Nom usuel du formulaire';

COMMENT ON COLUMN odk.t_formulaire_odk.odk_date_traitement
IS 'Date d''intégration desq données du formulaire en base';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23
Previous topic Chapter index Next topic