CREATE TABLE chat_robot_media_history (
    history_event_id SERIAL PRIMARY KEY,
    history_user_id character varying(36) NOT NULL,
    history_originator_id text,
    history_action text NOT NULL,
    history_timestamp integer NOT NULL,
    history_comment text,

    id text,
    content_type text,
    user_id uuid,
    registered_at integer,
    uploaded_at integer,
    has_preview boolean,
    shared boolean
);
