Grant permissions to user for any new tables created in postgresql
Found the answer. It is in this line in the ALTER DEFAULT PRIVILEGES documentation. You can change default privileges only for objects that will be created by yourself or by roles that you are a member of. I was using alter default privileges from a different user than the one creating the tables. Make sure … Read more