whFalsa / supabase /migrations /202607010001_customer_phone_number.sql
codeBOKER's picture
feat: send trip cards as individual messages and resolve trip_id from replies
0467de1
Raw
History Blame Contribute Delete
165 Bytes
alter table public.customers add column if not exists phone_number text;
create index if not exists idx_customers_phone_number
on public.customers(phone_number);