db_globoxylo
Previous topic Chapter index Next topic

Table: tr_operator_ope

 

 

Schema

public

 

Owner

globoxylo

 

Tablespace

(default)

 

Descriptions

Operator table

 

Columns

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

ope_id

serial

 

nextval('tr_operator_ope_ope_id_seq'::regclass)

Automatic digital operator identifier

 

 

ope_name

varchar(50)

 

 

 

Operator name

 

 

ope_first_name

varchar(50)

 

 

 

Operator's first name

 

 

ope_mail

varchar(120)

 

 

 

 

Operator email address

 

 

ope_employer

varchar(64)

 

 

 

 

Employer of Operator

 

Foreign Keys

There are no foreign keys for table tr_operator_ope

 

Check Constraints

There are no check constraints for table tr_operator_ope

 

Indices

Name

Type

Function

Columns

Primary Key

Unique

Description

c_uni_name_first_name_ope

btree

 

ope_name, ope_first_name

 

The name / first name pair of an operator must be unique

tr_operator_ope_pkey

btree

 

ope_id

 

 

Triggers

There are no triggers for table tr_operator_ope

 

Rules

There are no rules for table tr_operator_ope

 

Policies

There are no policies for table tr_operator_ope

 

Referenced

Table

Schema

Foreign Key

Columns

FK Table

FK Columns

Delete Action

Update Action

Deferrable

Check Time

Description

tj_rol_ope_grp_rog

public

c_fk_ope_rog

rog_ope_id

public.tr_operator_ope

ope_id

No Action

No Action

 

Immediate

The rog_ope_id field must correspond to an existing operator

tj_rol_ope_msam_ros

public

c_fk_ope_ros

ros_ope_id

public.tr_operator_ope

ope_id

No Action

No Action

 

Immediate

The ros_ope_id field necessarily corresponds to an existing operator

tj_rol_ope_mtre_rot

public

c_fk_ope_rot

rot_ope_id

public.tr_operator_ope

ope_id

No Action

No Action

 

Immediate

The rot_ope_id field necessarily corresponds to an existing operator

tj_rol_ope_mzon_roz

public

c_fk_ope_roz

roz_ope_id

public.tr_operator_ope

ope_id

No Action

No Action

 

Immediate

The roz_ope_id field necessarily corresponds to an existing operator

 

Properties

Property

Value

Inherited From

 

Rows

-1

Pages

0

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.tr_operator_ope (
 ope_id SERIAL,
 ope_name VARCHAR(50) NOT NULL,
 ope_first_name VARCHAR(50) NOT NULL,
 ope_mail VARCHAR(120),
 ope_employer VARCHAR(64),
 CONSTRAINT c_uni_name_first_name_ope UNIQUE(ope_name, ope_first_name),
 CONSTRAINT tr_operator_ope_pkey PRIMARY KEY(ope_id)
) ;

COMMENT ON TABLE public.tr_operator_ope
IS 'Operator table';

COMMENT ON COLUMN public.tr_operator_ope.ope_id
IS 'Automatic digital operator identifier';

COMMENT ON COLUMN public.tr_operator_ope.ope_name
IS 'Operator name';

COMMENT ON COLUMN public.tr_operator_ope.ope_first_name
IS 'Operator''s first name';

COMMENT ON COLUMN public.tr_operator_ope.ope_mail
IS 'Operator email address';

COMMENT ON COLUMN public.tr_operator_ope.ope_employer
IS 'Employer of Operator';

COMMENT ON CONSTRAINT c_uni_name_first_name_ope ON public.tr_operator_ope
IS 'The name / first name pair of an operator must be unique';

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com)
Previous topic Chapter index Next topic