Files
Jyotisha/frontend/supabase/migrations/20260717010000_chat_session_model.sql
T
2026-07-17 13:42:50 +08:00

12 lines
241 B
PL/PgSQL

begin;
alter table public.chat_sessions
add column if not exists model_id text;
grant insert (model_id)
on table public.chat_sessions to authenticated;
grant update (model_id)
on table public.chat_sessions to authenticated;
commit;