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 | 31 |
Tags
- 프로젝트 셋팅
- Next
- 스파르타코딩클럽
- 코드카타
- 셋팅
- 초기셋팅
- array정적메서드
- 프로그래머스
- js
- supabase
- TailwindCSS
- domain
- error
- 내일배움캠프
- CORS
- 오블완
- 코딩테스트
- React
- 티스토리챌린지
- 최적화
- 모던자바스크립트
- vercel
- 코테
- nextjs
- 자주 까먹는
- 모던 자바스크립트
- git
- auth
- useRouter
- deep dive
- Today
- Total
목록supbase (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