CREATE TABLE issue_reaction ( id UUID PRIMARY KEY DEFAULT gen_random_uuid(), issue_id UUID NOT NULL REFERENCES issue(id) ON DELETE CASCADE, workspace_id UUID NOT NULL REFERENCES workspace(id) ON DELETE CASCADE, actor_type TEXT NOT NULL CHECK (actor_type IN ('member', 'agent')), actor_id UUID NOT NULL, emoji TEXT NOT NULL, created_at TIMESTAMPTZ NOT NULL DEFAULT now(), UNIQUE (issue_id, actor_type, actor_id, emoji) ); CREATE INDEX idx_issue_reaction_issue_id ON issue_reaction(issue_id);