RHNCONTENTSOURCESSL
DDL scriptColumns
| Name | Type | Nullable | Default value | Comment |
|---|
| CONTENT_SOURCE_ID | NUMBER(38) | N | | |
| SSL_CA_CERT_ID | NUMBER(38) | N | | |
| SSL_CLIENT_CERT_ID | NUMBER(38) | Y | | |
| SSL_CLIENT_KEY_ID | NUMBER(38) | Y | | |
| 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_CSSSL_CLIENT_CHK | ssl_client_key_id is null or ssl_client_cert_id is not null |
Foreign Keys:

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