alter table public.contacts
  add column if not exists first_name text,
  add column if not exists last_name text,
  add column if not exists alternate_email text,
  add column if not exists phone text,
  add column if not exists source text,
  add column if not exists company text,
  add column if not exists notes text;
