Tables Previous topic Chapter index Next topic

G_VIGENCIAS

 

Description

(There is no description for table G_VIGENCIAS)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

CODIGO

 

CHAR(10)

 

 

 

 

NOMBRE

 

CHAR(100)

 

 

 

Triggers

(There are no triggers for table G_VIGENCIAS)

 

Indices

Index

Fields

Active

Unique

Order

PK_G_VIGENCIAS_1

CODIGO

ASC

 

References

(There are no references for table G_VIGENCIAS)

 

Referenced By

Table

Foreign Key

Fields

FK Field

Delete Rule

Update Rule

P_DESARROLLO

FK_P_DESARROLLO_7

CODG_VIGENCIA

CODIGO

NO ACTION

CASCADE

 

Definition

CREATE TABLE G_VIGENCIAS (
    CODIGO  CHAR(10) NOT NULL,
    NOMBRE  CHAR(100) NOT NULL
);


ALTER TABLE G_VIGENCIAS ADD CONSTRAINT PK_G_VIGENCIAS_1 PRIMARY KEY (CODIGO);

 

     Previous topic Chapter index Next topic