RHNUSERGROUP
DDL scriptColumns
| Name | Type | Nullable | Default value | Comment |
|---|
| ID | NUMBER(38) | N | | |
| NAME | VARCHAR2(64) | N | | |
| DESCRIPTION | VARCHAR2(1024) | N | | |
| MAX_MEMBERS | NUMBER(38) | Y | | |
| CURRENT_MEMBERS | NUMBER(38) | N | (0) | |
| GROUP_TYPE | NUMBER(38) | N | | |
| ORG_ID | NUMBER(38) | N | | |
| 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 |
|---|
| RHN_USER_GROUP_PK | ID
|
Foreign Keys:

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