create table if not exists project_billing ( project_uuid uuid not null primary key, balance numeric default 0.0 not null, currency text not null, user_uuid uuid, updated_at timestamp with time zone not null, created_at timestamp with time zone not null );