I create two users in my PostgreSQL db. let's say migration
and dev
.
I create a table A
with user migration
. Then I create table B
which inherits table A
as user dev
, but that fails.
ERROR: must be owner of relation A
If I don't want to alter the table owner, is there another way to make it work?