Recent Posts
Recent Comments
Archives
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
Tags
- supabase
- 코딩테스트
- vercel
- auth
- domain
- 자주 까먹는
- 모던 자바스크립트
- TailwindCSS
- 코드카타
- Next
- useRouter
- js
- 프로젝트 셋팅
- 프로그래머스
- 스파르타코딩클럽
- nextjs
- 오블완
- 최적화
- 초기셋팅
- 코테
- git
- React
- 셋팅
- 내일배움캠프
- array정적메서드
- 티스토리챌린지
- error
- 모던자바스크립트
- CORS
- deep dive
- Today
- Total
목록user (1)
도록

배경- supabase.auth를 통해 인증할 때, supabase.public.users 테이블에 데이터를 자동으로 insert 하기를 원함 방법1. users 테이블 생성2. sql editor에서 trigger 함수 생성-- 1. 기존 트리거 삭제drop trigger if exists on_auth_user_created on auth.users;-- 2. 트리거 함수 수정create or replace function public.handle_new_auth_user()returns trigger as $$declare new_json json; provider text; provider_id text; name text; picture text;begin begin -- 필드 ..
Today I Learned/in dev
2025. 5. 15. 18:51