Skip to content

Commit dd9db0e

Browse files
committed
refactor: Remove Row Level Security from categories table definition
1 parent 9551d3e commit dd9db0e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
alter table "public"."categories" disable row level security;
2+
3+

supabase/schemas/categories.sql

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ create table if not exists public.categories (
1414
-- インデックス
1515
create index if not exists categories_name_idx on public.categories (name);
1616

17-
-- RLS (Row Level Security)
18-
alter table public.categories enable row level security;
19-
2017
-- コメント
2118
comment on table public.categories is 'タスクカテゴリマスターテーブル';
2219
comment on column public.categories.id is 'カテゴリの一意識別子';

0 commit comments

Comments
 (0)