You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The scripts don't reassign owner to full_access, that work needs to done manually most of the time.
However this repo is designed to support all CHT deployments, even self hosted. So we should not hardcode Medic-specific roles, but we can include that as a separate script.
Create a new script that alters the ownership of each object so it can be run when necessary (on demand): ALTER [OBJECT_TYPE] [OBJECT_NAME] OWNER TO full_access;
It would be nice to add some comments about how to use it, the reason of this script and what the role is about, so other projects have better understanding of this script.
The text was updated successfully, but these errors were encountered:
The scripts don't reassign owner to
full_access
, that work needs to done manually most of the time.However this repo is designed to support all CHT deployments, even self hosted. So we should not hardcode Medic-specific roles, but we can include that as a separate script.
ALTER [OBJECT_TYPE] [OBJECT_NAME] OWNER TO full_access;
The text was updated successfully, but these errors were encountered: