Spaces:
Paused
Paused
File size: 1,577 Bytes
9e0118f 5e8b1db 9e0118f 5e8b1db 9e0118f | 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 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | create table if not exists assistant_profiles (
profile_id text primary key,
display_name text,
goal_summary text,
master_prompt text,
financial_objectives text,
business_context text,
constraints text,
baseline_tone text,
personality_summary text,
personality_traits jsonb default '{}'::jsonb,
updated_at timestamptz default now()
);
create table if not exists assistant_conversations (
id bigint generated always as identity primary key,
profile_id text not null references assistant_profiles(profile_id) on delete cascade,
chat_mode text not null,
model_name text,
user_message text not null,
assistant_reply text not null,
personality_summary text,
personality_traits jsonb default '{}'::jsonb,
data_rows_count integer default 0,
created_at timestamptz default now()
);
create index if not exists idx_assistant_conversations_profile_id_created_at
on assistant_conversations (profile_id, created_at desc);
alter table assistant_profiles enable row level security;
alter table assistant_conversations enable row level security;
drop policy if exists service_role_profiles_access on assistant_profiles;
create policy service_role_profiles_access
on assistant_profiles
for all
using (true)
with check (true);
drop policy if exists service_role_conversations_access on assistant_conversations;
create policy service_role_conversations_access
on assistant_conversations
for all
using (true)
with check (true); |