Description
(There is no description for table FESTIVOS)
Fields
PK | FK | Field | Domain | Type | NN | Default | Description |
---|---|---|---|---|---|---|---|
|
CODIGO |
|
INTEGER |
|
|
||
|
|
NOMBRE |
|
CHAR(80) |
|
|
Triggers
(There are no triggers for table FESTIVOS)
Indices
Index | Fields | Active | Unique | Order |
---|---|---|---|---|
CODIGO |
ASC |
References
(There are no references for table FESTIVOS)
Referenced By
(There are no tables referenced by table FESTIVOS)
Definition
CREATE TABLE FESTIVOS (
CODIGO INTEGER NOT NULL,
NOMBRE CHAR(80) NOT NULL
);
ALTER TABLE FESTIVOS ADD CONSTRAINT PK_FESTIVOS PRIMARY KEY (CODIGO);
![]() ![]() ![]() |