Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

Patient UpdateLog CF

CREATE TABLE patient_update_log (
year int,
event_id timeuuid,
health_id varchar,
change_set varchar,
PRIMARY KEY (year, event_id, health_id)
) WITH CLUSTERING ORDER BY (event_id ASC);

Update Patient

  • Records in patient_update_log CF are created whenever any Loggable Fields of a patient record get updated.  event_id set to a generated  timeuuid, change_set to the changed delta of patient object as json string, year set to event year.

Approve Patient Update Request

  • (If an update request approved) Records in patient_update_log CF are created. 

 

Loggable Fields

 

  • sur_name, 
  • given_name, 
  • gender, 
  • confidential and 
  • address

Feed Query

  • Since - gte marker UUID(minimum uuid for given time)
  • last_marker - gt event_id
  • No labels

0 Comments

You are not logged in. Any changes you make will be marked as anonymous. You may want to Log In if you already have an account.