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