Tables Previous topic Chapter index Next topic

PRESUPUESTOS

 

Description

(There is no description for table PRESUPUESTOS)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

CODIGO

 

INTEGER

 

 

 

 

NOMBRE

 

CHAR(80)

 

 

 

 

FACTOR

 

NUMERIC(17,4)

0

 

 

Triggers

(There are no triggers for table PRESUPUESTOS)

 

Indices

Index

Fields

Active

Unique

Order

PK_PRESUPUESTOS_1

CODIGO

ASC

 

References

(There are no references for table PRESUPUESTOS)

 

Referenced By

Table

Foreign Key

Fields

FK Field

Delete Rule

Update Rule

INI_PRESUPUESTO

FK_INI_PRESUPUESTO_2

CODPRESUPUESTO

CODIGO

NO ACTION

CASCADE

 

Definition

CREATE TABLE PRESUPUESTOS (
    CODIGO  INTEGER NOT NULL,
    NOMBRE  CHAR(80) NOT NULL,
    FACTOR  NUMERIC(17,4) DEFAULT 0
);


ALTER TABLE PRESUPUESTOS ADD CONSTRAINT PK_PRESUPUESTOS_1 PRIMARY KEY (CODIGO);

 

     Previous topic Chapter index Next topic