CREATE TABLE distributing_block_event_stats (
    type TEXT,
    user_id UUID,
    shows_count integer,
    FOREIGN KEY(user_id) REFERENCES "user"(id),
    UNIQUE(type, user_id)
);
