Description
(There is no description for table FINES_GASTO)
Fields
PK | FK | Field | Domain | Type | NN | Default | Description |
---|---|---|---|---|---|---|---|
|
CODIGO |
|
CHAR(10) |
|
|
||
|
|
NOMBRE |
|
CHAR(100) |
|
|
Triggers
(There are no triggers for table FINES_GASTO)
Indices
Index | Fields | Active | Unique | Order |
---|---|---|---|---|
CODIGO |
ASC |
References
(There are no references for table FINES_GASTO)
Referenced By
Table | Foreign Key | Fields | FK Field | Delete Rule | Update Rule |
---|---|---|---|---|---|
CODFIN_GASTO |
CODIGO |
NO ACTION |
CASCADE |
Definition
CREATE TABLE FINES_GASTO (
CODIGO CHAR(10) NOT NULL,
NOMBRE CHAR(100) NOT NULL
);
ALTER TABLE FINES_GASTO ADD CONSTRAINT PK_FINES_GASTO PRIMARY KEY (CODIGO);
![]() ![]() ![]() |