create table if not exists issue_reaction ( issue_uuid uuid not null, user_uuid uuid not null, reaction varchar(255) not null, created_at timestamp with time zone not null, primary key (issue_uuid, user_uuid, reaction) );