Skip to content

Commit

Permalink
feat: プロフィールテーブルにゲストアカウントのフラグを追加
Browse files Browse the repository at this point in the history
  • Loading branch information
shun-shobon committed Nov 9, 2024
1 parent 50e0b35 commit f5cef59
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions supabase/migrations/20241109182100_add_guest_column.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-- プロフィールテーブルにゲストアカウントのフラグを追加
ALTER TABLE public.profiles
ADD COLUMN is_guest BOOLEAN NOT NULL DEFAULT FALSE;

0 comments on commit f5cef59

Please sign in to comment.