0
*All registered users who are members of the "ACCESS SITE" will have the same permissions.
I created a group of users (Group Roles) in Postgresql called "SITE ACCESS" to put all users (Login Roles) of the sites and systems that will have permissions to search, insert, update and delete information. When creating a user for a particular system or site, I just want to say that it is part of the Group (Group Roles) "SITE ACCESS" and it inherits all the group permissions previously defined without giving permission every time it creates a new user.
How can I set up the Group Roles "ACCESS SITE" giving permission once and later only go allocating new users in the group?
In CREATE ROLE accesso_site NOINHERIT LOGIN PASSWORD '1'; why I need to put LOGIN PASSWORD '1 this code is not to create the group of users?
– TGO