How Can We Help?
Problem: PHP Warning: pg_query(): Query failed: ERROR: permission denied for sequencename in PostgreSql
Solution:
To fix this problem, change the owner to the role that needs to access this sequence
ALTER TABLE sequencename OWNER TO rolename;
Change sequencename to your sequence name and rolename to the owner