create table if not exists comments (url text not null, author text not null, comment text not null, ts timestamptz not null default now()); create index if not exists idx_comments_url on comments(url);