Tables Previous topic Chapter index Next topic

PAGOS

 

Description

(There is no description for table PAGOS)

 

Fields

PK

FK

Field

Domain

Type

NN

Default

Description

 

ITEM

 

INTEGER

 

 

 

 

TIPO

 

CHAR(5)

 

 

 

 

CODCUENTA

 

CHAR(30)

 

 

 

Triggers

(There are no triggers for table PAGOS)

 

Indices

Index

Fields

Active

Unique

Order

PK_PAGOS

ITEM

ASC

 

References

(There are no references for table PAGOS)

 

Referenced By

(There are no tables referenced by table PAGOS)

 

Definition

CREATE TABLE PAGOS (
    ITEM       INTEGER NOT NULL,
    TIPO       CHAR(5) NOT NULL,
    CODCUENTA  CHAR(30) NOT NULL
);


ALTER TABLE PAGOS ADD CONSTRAINT PK_PAGOS PRIMARY KEY (ITEM);

 

     Previous topic Chapter index Next topic