Tables Previous topic Chapter index Next topic

ACCIONES

 

Description

(There is no description for table ACCIONES)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

CODIGO

 

CHAR(20)

 

 

 

 

NOMBRE

 

CHAR(80)

 

 

 

 

TIEMPO

 

INTEGER

1

 

 

Triggers

(There are no triggers for table ACCIONES)

 

Indices

Index

Fields

Active

Unique

Order

PK_ACCIONES

CODIGO

ASC

 

References

(There are no references for table ACCIONES)

 

Referenced By

Table

Foreign Key

Fields

FK Field

Delete Rule

Update Rule

CASOS

FK_CASOS_4

CODACCION

CODIGO

NO ACTION

CASCADE

 

Definition

CREATE TABLE ACCIONES (
    CODIGO  CHAR(20) NOT NULL,
    NOMBRE  CHAR(80) NOT NULL,
    TIEMPO  INTEGER DEFAULT 1
);


ALTER TABLE ACCIONES ADD CONSTRAINT PK_ACCIONES PRIMARY KEY (CODIGO);

 

     Previous topic Chapter index Next topic