RHNACTIONCONFIGDATE
DDL scriptColumns
| Name | Type | Nullable | Default value | Comment |
|---|
| ACTION_ID | NUMBER(38) | N | | |
| START_DATE | TIMESTAMP(6) WITH LOCAL TIME ZONE | N | | |
| END_DATE | TIMESTAMP(6) WITH LOCAL TIME ZONE | Y | | |
| IMPORT_CONTENTS | CHAR(1) | N | | |
| CREATED | TIMESTAMP(6) WITH LOCAL TIME ZONE | N | (current_timestamp) | |
| MODIFIED | TIMESTAMP(6) WITH LOCAL TIME ZONE | N | (current_timestamp) | |
Check Constraints:
| Constraint Name | Check Condition |
|---|
| RHN_ACTIONCD_FILE_IC_CK | import_contents in ('Y','N') |
Foreign Keys:

Options:
| Option | Settings |
|---|
| Tablespace | USERS |
| Index Organized | No |
| Generated by Oracle | No |
| Clustered | No |
| Nested | No |
| Temporary | No |
Indexes:
Triggers
RHN_ACTIONCD_MOD_TRIG
Legend: string keyword reserved word operator
CREATE TRIGGER
rhn_actioncd_mod_trig
before insert or update on rhnActionConfigDate
for each row
REFERENCING NEW AS NEW OLD AS OLD
begin
:new.modified := current_timestamp;
end;