CREATE TABLE trace_tags_history (
    history_event_id BIGSERIAL PRIMARY KEY,
    history_user_id text NOT NULL,
    history_originator_id text,
    history_action text NOT NULL,
    history_timestamp integer NOT NULL,
    history_comment text,

    tag_id uuid,
    object_id text NOT NULL,
    tag text,
    data text,
    performer text,
    priority integer,
    snapshot text,
    filter text
)
