CREATE TABLE signals (
    id uuid PRIMARY KEY,
    name text NOT NULL,
    type entity_type NOT NULL,

    object_id uuid,
    session_id uuid,
    user_id uuid,

    resolution text,
    start integer NOT NULL,
    finish integer,
    visible boolean
);
