RHNCHANNELCOMPS
DDL scriptColumns
| Name | Type | Nullable | Default value | Comment |
|---|
| ID | NUMBER(38) | N | | |
| CHANNEL_ID | NUMBER(38) | N | | |
| RELATIVE_FILENAME | VARCHAR2(256) | N | | |
| LAST_MODIFIED | DATE | N | (sysdate)
| |
| CREATED | DATE | N | (sysdate)
| |
| MODIFIED | DATE | N | (sysdate)
| |
Primary key:
| Constraint Name | Columns |
|---|
| RHN_CHANNELCOMPS_ID_PK | ID
|
Foreign Keys:

Options:
| Option | Settings |
|---|
| Tablespace | DATA_TBS |
| Index Organized | No |
| Generated by Oracle | No |
| Clustered | No |
| Nested | No |
| Temporary | No |
Indexes:
| Index Name | Type | Unuqueness | Columns | DDL script |
|---|
| RHN_CHANNELCOMPS_ID_PK | NORMAL | UNIQUE | ID
| DDL script |
Triggers
RHN_CHANNELCOMPS_MOD_TRIG
Legend: string keyword reserved word operator
CREATE TRIGGER
rhn_channelcomps_mod_trig
before insert or update on rhnChannelComps
for each row
REFERENCING NEW AS NEW OLD AS OLD
begin
:new.modified := sysdate;
if :new.last_modified = :old.last_modified
then
:new.last_modified := sysdate;
end if;
end rhn_channelcomps_mod_trig;