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 |
---|---|---|---|---|
CODIGO |
ASC |
References
(There are no references for table PRESUPUESTOS)
Referenced By
Table | Foreign Key | Fields | FK Field | Delete Rule | Update Rule |
---|---|---|---|---|---|
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);
![]() ![]() ![]() |