Connect your Supabase database to sync clients across devices
Step 1 โ Create Table
Open SQL Editor in Supabase and run:
create table if not exists clients (
id bigserial primary key,
name text not null,
country text default '',
plan text default 'Monthly',
campaign text default '',
source text default '',
kyc text default '',
acc_status text default 'Active',
seats integer default 1,
price numeric(10,2) default 15.00,
start_date date,
end_date date not null,
contact text default '',
email text default '',
voip text default '',
dialer text default '',
notes text default '',
extra_dids integer default 0,
recording boolean default false,
created_at timestamptz default now()
);
alter table clients enable row level security;
create policy "Allow all" on clients
for all using (true) with check (true);