create table expenses (
id uuid default gen_random_uuid() primary key,
title text not null,
amount numeric not null,
payer text not null,
date date not null,
receipt text,
updated_at timestamp with time zone default now()
);
alter publication supabase_realtime add table expenses;