Request Handler table for tracking requests made by operators (rather than end users). Unpopulated in new archive presently.

Definition:

       Column        |            Type             | Collation | Nullable | Default
---------------------+-----------------------------+-----------+----------+---------
 request_id          | numeric                     |           | not null |
 creation_date       | timestamp without time zone |           | not null |
 priority            | character varying           |           | not null |
 resolved_flag       | character(1)                |           | not null |
 action_id           | numeric                     |           |          |
 request_description | character varying           |           |          |
Indexes:
    "rh_operator_requests_pkey" PRIMARY KEY, btree (request_id)

Columns:

request_id: foreign key into rh_requests

creation_date: timestamp

priority: relative priority on some scale, presumably

action_id: ?

request_description: textual description of request?



  • No labels