Обсуждение: What permissions are needed to drop a column from a table in postgres?

Поиск
Список
Период
Сортировка

What permissions are needed to drop a column from a table in postgres?

От
Siddharth Jain
Дата:
Hi All,

What permissions does a user need to be able to drop columns from a table in postgres? I did read this:
but could not find the answer.

Thanks

S.

Re: What permissions are needed to drop a column from a table in postgres?

От
"David G. Johnston"
Дата:
On Sun, Apr 2, 2023 at 5:05 PM Siddharth Jain <siddhsql@gmail.com> wrote:
What permissions does a user need to be able to drop columns from a table in postgres? I did read this:
but could not find the answer.


Because there are no permissions for that - you must either be the owner of the table or be a superuser.

David J.