Tables Previous topic Chapter index Next topic

POLITICAS

 

Description

(There is no description for table POLITICAS)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

CODIGO

 

CHAR(10)

 

 

 

 

NOMBRE

 

CHAR(80)

 

 

 

 

NIVEL

 

CHAR(1)

'N'

 

 

 

NOTA

 

BLOB SUB_TYPE 1 SEGMENT SIZE 80

 

 

 

Triggers

(There are no triggers for table POLITICAS)

 

Indices

Index

Fields

Active

Unique

Order

PK_POLITICAS

CODIGO

ASC

 

References

(There are no references for table POLITICAS)

 

Referenced By

(There are no tables referenced by table POLITICAS)

 

Definition

CREATE TABLE POLITICAS (
    CODIGO  CHAR(10) NOT NULL,
    NOMBRE  CHAR(80) NOT NULL,
    NIVEL   CHAR(1) DEFAULT 'N',
    NOTA    BLOB SUB_TYPE 1 SEGMENT SIZE 80
);


ALTER TABLE POLITICAS ADD CONSTRAINT PK_POLITICAS PRIMARY KEY (CODIGO);

 

     Previous topic Chapter index Next topic