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