| Name | Type | Nullable | Default value | Comment |
|---|---|---|---|---|
| ID | NUMBER(38) | N | ||
| ACTION_ID | NUMBER(38) | N | ||
| SERVER_ID | NUMBER(38) | N | ||
| CONFIG_REVISION_ID | NUMBER(38) | N | ||
| FAILURE_ID | NUMBER(38) | Y | ||
| CREATED | DATE | N | (sysdate) | |
| MODIFIED | DATE | N | (sysdate) |
| Constraint Name | Columns |
|---|---|
| RHN_ACTIONCR_ID_PK | ID |
| Constraint Name | Columns | Referenced table | Referenced Constraint | On Delete Rule |
|---|---|---|---|---|
| RHN_ACTIONCR_AID_FK | ACTION_ID | RHNACTION | RHN_ACTION_PK | CASCADE |
| RHN_ACTIONCR_CRID_FK | CONFIG_REVISION_ID | RHNCONFIGREVISION | RHN_CONFREVISION_ID_PK | CASCADE |
| RHN_ACTIONCR_FAILID_FK | FAILURE_ID | RHNCONFIGFILEFAILURE | RHN_CONFFILE_FAIL_ID_PK | NO ACTION |
| RHN_ACTIONCR_SID_FK | SERVER_ID | RHNSERVER | RHN_SERVER_ID_PK | NO ACTION |

| Option | Settings |
|---|---|
| Tablespace | DATA_TBS |
| Index Organized | No |
| Generated by Oracle | No |
| Clustered | No |
| Nested | No |
| Temporary | No |
| Index Name | Type | Unuqueness | Columns | DDL script |
|---|---|---|---|---|
| RHN_ACTIONCR_AID_SID_CRID_UQ | NORMAL | UNIQUE | ACTION_ID , SERVER_ID , CONFIG_REVISION_ID | DDL script |
| RHN_ACTIONCR_ID_PK | NORMAL | UNIQUE | ID | DDL script |
| RHN_ACTIONCR_SID_AID_IDX | NORMAL | NONUNIQUE | SERVER_ID , ACTION_ID | DDL script |
| RHN_ACT_CR_CRID_IDX | NORMAL | NONUNIQUE | CONFIG_REVISION_ID | DDL script |
| Table | Constraint |
|---|---|
| RHNACTIONCONFIGREVISIONRESULT | RHN_ACTIONCFR_ACRID_FK |
Legend: comment string keyword reserved word operator
CREATE TRIGGER rhn_actioncr_mod_trig before insert or update on rhnActionConfigRevision for each row REFERENCING NEW AS NEW OLD AS OLD begin :new.modified := sysdate; end;