pggeodb.nancy.inra.fr/db_woodseer - db_woodseer on pggeodb.nancy.inra.fr
Previous topic Chapter index Next topic

Table: tr_acquisition_detection_mean_adm

 

 

Schema

public

 

Owner

woodseer

 

Tablespace

(default)

 

Descriptions

Table of acquisition or singularities detections means

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

adm_id

serial

 

nextval('tr_acquisition_detection_mean_adm_adm_id_seq'::regclass)

automatic numeric identifier of the mean

 

 

adm_code

varchar(16)

 

 

unique code of the mean

 

 

adm_name

varchar(64)

 

 

 

name/label of the mean

 

 

adm_description

varchar(300)

 

 

 

 

description of the mean

 

Foreign Keys

There are no foreign keys for table tr_acquisition_detection_mean_adm

 

Check Constraints

There are no check constraints for table tr_acquisition_detection_mean_adm

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

c_uni_code_adm

btree

 

adm_code

 

The code for a mean must be unique

tr_acquisition_detection_mean_pkey

btree

 

adm_id

 

 

Triggers

There are no triggers for table tr_acquisition_detection_mean_adm

 

Rules

There are no rules for table tr_acquisition_detection_mean_adm

 

Policies

There are no policies for table tr_acquisition_detection_mean_adm

 

Referenced

Table

Schema

Foreign Key

Fields

FK Table

FK Fields

Delete Action

Update Action

Deferrable

Check Time

Description

t_acquisition_acq

public

c_fk_adm_acq

acq_adm_id

public.tr_acquisition_detection_mean_adm

adm_id

No Action

No Action

 

Immediate

an acquisition can be associated to one mean of acquisition

t_detection_singularity_det

public

c_fk_adm_det

det_adm_id

public.tr_acquisition_detection_mean_adm

adm_id

No Action

No Action

 

Immediate

a singularity detection is associated to one and only one detection mean

 

Properties

Property

Value

Inherited From

 

Rows

4

Pages

1

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.tr_acquisition_detection_mean_adm (
 adm_id SERIAL,
 adm_code VARCHAR(16) NOT NULL,
 adm_name VARCHAR(64) NOT NULL,
 adm_description VARCHAR(300),
 CONSTRAINT c_uni_code_adm UNIQUE(adm_code),
 CONSTRAINT tr_acquisition_detection_mean_pkey PRIMARY KEY(adm_id)
) ;

COMMENT ON TABLE public.tr_acquisition_detection_mean_adm
IS 'Table of acquisition or singularities detections means';

COMMENT ON COLUMN public.tr_acquisition_detection_mean_adm.adm_id
IS 'automatic numeric identifier of the mean';

COMMENT ON COLUMN public.tr_acquisition_detection_mean_adm.adm_code
IS 'unique code of the mean';

COMMENT ON COLUMN public.tr_acquisition_detection_mean_adm.adm_name
IS 'name/label of the mean';

COMMENT ON COLUMN public.tr_acquisition_detection_mean_adm.adm_description
IS 'description of the mean';

COMMENT ON CONSTRAINT c_uni_code_adm ON public.tr_acquisition_detection_mean_adm
IS 'The code for a mean must be unique';

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