0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

PostgreSQL

Last updated at Posted at 2021-12-01

ロール作成
create role [ロール名] with login password [パスワード]

create role postgres_dev with login password postgres_dev

管理者権限付与

grant postgres to [ロール名]

grant postgres to postgres_dev

ロールにスキーマを付与
grant usage on schema [スキーマ名] to [ロール名]

grant usage on schema tym to postgres_dev

なんかスキーマに権限付与

revoke create on schema [スキーマ名] from public;

revoke create on schema tym from public;

外部キーの取得

select *
from infomation_schema.table_constraints
where constraint_type = 'FOREIGN KEY'
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?