create table if not exists issue_comment ( id bigserial primary key, issue uuid not null, author uuid not null, body text not null, created_at timestamp with time zone not null, updated_at timestamp with time zone not null ); create index if not exists idx_issue_comment_issue on issue_comment (issue);