pggeodb-preprod.nancy.inra.fr/db_diams
Previous topic Chapter index Next topic

Table: itk_trav_sol

 

 

Schema

public

 

Owner

postgres

 

Tablespace

(default)

 

Descriptions

There is no description for table itk_trav_sol

 

Columns

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

id_trav_sol

serial

 

nextval('itk_trav_sol_id_trav_sol_seq'::regclass)

 

 

stk_itk_trav

integer

 

 

 

 

 

 

 

date_trav_sol

varchar

 

 

 

 

 

 

 

operation_trav_sol

varchar

 

 

 

 

 

 

 

surface_trav_sol

varchar

 

 

 

 

 

 

 

detail_trav_sol

varchar

 

 

 

 

 

 

Foreign Keys

Name

Columns

FK Table

FK Columns

Delete Action

Update Action

Deferrable

Check Time

Description

st_itk_trav

stk_itk_trav

public.itk

id_itk

No Action

No Action

 

Immediate

 

 

Check Constraints

There are no check constraints for table itk_trav_sol

 

Indices

Name

Type

Function

Columns

Primary Key

Unique

Description

fki_st_itk

btree

 

stk_itk_trav

 

 

 

pmk_trav_sol

btree

 

id_trav_sol

 

 

Triggers

There are no triggers for table itk_trav_sol

 

Rules

There are no rules for table itk_trav_sol

 

Policies

There are no policies for table itk_trav_sol

 

Referenced

There are no tables referenced by table itk_trav_sol

 

Properties

Property

Value

Inherited From

 

Rows

5

Pages

1

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.itk_trav_sol (
 id_trav_sol SERIAL,
 stk_itk_trav INTEGER,
 date_trav_sol VARCHAR,
 operation_trav_sol VARCHAR,
 surface_trav_sol VARCHAR,
 detail_trav_sol VARCHAR,
 CONSTRAINT pmk_trav_sol PRIMARY KEY(id_trav_sol),
 CONSTRAINT st_itk_trav FOREIGN KEY (stk_itk_trav)
   REFERENCES public.itk(id_itk)
   ON DELETE NO ACTION
   ON UPDATE NO ACTION
   NOT DEFERRABLE

) ;

CREATE INDEX fki_st_itk ON public.itk_trav_sol
 USING btree (stk_itk_trav);

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