How to handling access privilege in liquibase?

I am doing manul execution from root/admin user to grant previledge to any user for new tables

I am unable to find any solution to do the same with changelog file.

Kindly help me out or give some guidance.

1 Like

What DBMS platform are you using? What Liquibase file format are you using?

Normally the table owner would just run a grant statement:

grant select on table1 to user1;

1 Like