RHNCONFIGURATION
DDL scriptColumns
| Name | Type | Nullable | Default value | Comment |
|---|
| KEY | VARCHAR2(64) | N | | |
| DESCRIPTION | VARCHAR2(512) | N | | |
| VALUE | VARCHAR2(512) | Y | | |
| DEFAULT_VALUE | VARCHAR2(512) | Y | | |
| CREATED | TIMESTAMP(6) WITH LOCAL TIME ZONE | N | (current_timestamp) | |
| MODIFIED | TIMESTAMP(6) WITH LOCAL TIME ZONE | N | (current_timestamp) | |
Primary key:
| Constraint Name | Columns |
|---|
| RHNCONFIG_KEY_PK | KEY
|
Options:
| Option | Settings |
|---|
| Tablespace | USERS |
| Index Organized | No |
| Generated by Oracle | No |
| Clustered | No |
| Nested | No |
| Temporary | No |
Indexes:
| Index Name | Type | Unuqueness | Columns | DDL script |
|---|
| RHNCONFIG_KEY_PK | NORMAL | UNIQUE | KEY
| DDL script |
Triggers
RHN_CONF_MOD_TRIG
Legend: string keyword reserved word operator
CREATE TRIGGER
rhn_conf_mod_trig
before insert or update on rhnConfiguration
for each row
REFERENCING NEW AS NEW OLD AS OLD
begin
:new.modified := current_timestamp;
end;